[Lldb-commits] [lldb] r220914 - Remove hex character number from wchar_t test
Ed Maste
emaste at freebsd.org
Thu Oct 30 10:41:11 PDT 2014
Author: emaste
Date: Thu Oct 30 12:41:11 2014
New Revision: 220914
URL: http://llvm.org/viewvc/llvm-project?rev=220914&view=rev
Log:
Remove hex character number from wchar_t test
After r220894 (StringPrinter change) it is no longer emitted. Update the
test rather than considering it a bug as the new format is preferred.
Modified:
lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py
Modified: lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py?rev=220914&r1=220913&r2=220914&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py (original)
+++ lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py Thu Oct 30 12:41:11 2014
@@ -67,7 +67,7 @@ class CxxWCharTTestCase(TestBase):
substrs = ['(int) foo_x.object = '])
# Check that we can run expressions that return wchar_t
- self.expect("expression L'a'",substrs = ['(wchar_t) $',"61 L'a'"])
+ self.expect("expression L'a'",substrs = ['(wchar_t) $',"L'a'"])
# Mazel Tov if this works!
self.expect("frame variable mazeltov",
More information about the lldb-commits
mailing list