[Lldb-commits] [lldb] r115819 - /lldb/trunk/test/persistent_variables/TestPersistentVariables.py

Johnny Chen johnny.chen at apple.com
Wed Oct 6 12:38:08 PDT 2010


Author: johnny
Date: Wed Oct  6 14:38:08 2010
New Revision: 115819

URL: http://llvm.org/viewvc/llvm-project?rev=115819&view=rev
Log:
Modification of the expected start strings for simple 'expr' output involving persistent variables.

Modified:
    lldb/trunk/test/persistent_variables/TestPersistentVariables.py

Modified: lldb/trunk/test/persistent_variables/TestPersistentVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/persistent_variables/TestPersistentVariables.py?rev=115819&r1=115818&r2=115819&view=diff
==============================================================================
--- lldb/trunk/test/persistent_variables/TestPersistentVariables.py (original)
+++ lldb/trunk/test/persistent_variables/TestPersistentVariables.py Wed Oct  6 14:38:08 2010
@@ -22,20 +22,20 @@
         self.runCmd("run", RUN_SUCCEEDED)
 
         self.expect("expr int $i = 5; $i + 1",
-            startstr = "$0 = (int) 6")
-        # $0 = (int) 6
+            startstr = "(int) $0 = 6")
+        # (int) $0 = 6
 
         self.expect("expr $i + 3",
-            startstr = "$1 = (int) 8")
-        # $1 = (int) 8
+            startstr = "(int) $1 = 8")
+        # (int) $1 = 8
 
         self.expect("expr $1 + $0",
-            startstr = "$2 = (int) 14")
-        # $2 = (int) 14
+            startstr = "(int) $2 = 14")
+        # (int) $2 = 14
 
         self.expect("expr $2",
-            startstr = "$3 = (int) 14")
-        # $3 = (int) 14
+            startstr = "(int) $3 = 14")
+        # (int) $3 =  14
 
 
 if __name__ == '__main__':





More information about the lldb-commits mailing list