[Lldb-commits] [lldb] r157213 - /lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
Sean Callanan
scallanan at apple.com
Mon May 21 15:25:12 PDT 2012
Author: spyffe
Date: Mon May 21 17:25:12 2012
New Revision: 157213
URL: http://llvm.org/viewvc/llvm-project?rev=157213&view=rev
Log:
Fixed the new-syntax testcase to reflect how we
print string literals.
Modified:
lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
Modified: lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py?rev=157213&r1=157212&r2=157213&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py (original)
+++ lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py Mon May 21 17:25:12 2012
@@ -120,7 +120,7 @@
self.expect("expr -o -- @( 1 + 3 )", VARIABLES_DISPLAYED_CORRECTLY,
substrs = ["NSNumber", "4"])
self.expect("expr -o -- @(\"Hello world\" + 6)", VARIABLES_DISPLAYED_CORRECTLY,
- substrs = ["NSString", "@\"world\""])
+ substrs = ["NSString", "world"])
if __name__ == '__main__':
More information about the lldb-commits
mailing list