[Lldb-commits] [lldb] r113756 - /lldb/trunk/test/order/TestOrderFile.py

Johnny Chen johnny.chen at apple.com
Mon Sep 13 09:59:12 PDT 2010


Author: johnny
Date: Mon Sep 13 11:59:11 2010
New Revision: 113756

URL: http://llvm.org/viewvc/llvm-project?rev=113756&view=rev
Log:
Updated the expected matching strings.

Modified:
    lldb/trunk/test/order/TestOrderFile.py

Modified: lldb/trunk/test/order/TestOrderFile.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/order/TestOrderFile.py?rev=113756&r1=113755&r2=113756&view=diff
==============================================================================
--- lldb/trunk/test/order/TestOrderFile.py (original)
+++ lldb/trunk/test/order/TestOrderFile.py Mon Sep 13 11:59:11 2010
@@ -20,8 +20,8 @@
         # Test that the debug symbols have Function f3 before Function f1.
         self.runCmd("image dump symtab a.out")
         output = self.res.GetOutput()
-        mo_f3 = re.search("Function +.+f3", output)
-        mo_f1 = re.search("Function +.+f1", output)
+        mo_f3 = re.search("Code +.+f3", output)
+        mo_f1 = re.search("Code +.+f1", output)
         
         # Match objects for f3 and f1 must exist and f3 must come before f1.
         self.assertTrue(mo_f3 and mo_f1 and mo_f3.start() < mo_f1.start(),





More information about the lldb-commits mailing list