[Lldb-commits] [lldb] r237578 - Fix test expectation in TestThreadExit after r237566

Tamas Berghammer tberghammer at google.com
Mon May 18 09:08:06 PDT 2015


Author: tberghammer
Date: Mon May 18 11:08:06 2015
New Revision: 237578

URL: http://llvm.org/viewvc/llvm-project?rev=237578&view=rev
Log:
Fix test expectation in TestThreadExit after r237566

Modified:
    lldb/trunk/test/functionalities/thread/thread_exit/TestThreadExit.py

Modified: lldb/trunk/test/functionalities/thread/thread_exit/TestThreadExit.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/thread_exit/TestThreadExit.py?rev=237578&r1=237577&r2=237578&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/thread_exit/TestThreadExit.py (original)
+++ lldb/trunk/test/functionalities/thread/thread_exit/TestThreadExit.py Mon May 18 11:08:06 2015
@@ -50,10 +50,10 @@ class ThreadExitTestCase(TestBase):
 
         # The breakpoint list should show 1 locations.
         self.expect("breakpoint list -f", "Breakpoint location shown correctly",
-            substrs = ["1: file = 'main.cpp', line = %d, locations = 1" % self.break_1,
-                       "2: file = 'main.cpp', line = %d, locations = 1" % self.break_2,
-                       "3: file = 'main.cpp', line = %d, locations = 1" % self.break_3,
-                       "4: file = 'main.cpp', line = %d, locations = 1" % self.break_4])
+            substrs = ["1: file = 'main.cpp', line = %d, exact_match = 0, locations = 1" % self.break_1,
+                       "2: file = 'main.cpp', line = %d, exact_match = 0, locations = 1" % self.break_2,
+                       "3: file = 'main.cpp', line = %d, exact_match = 0, locations = 1" % self.break_3,
+                       "4: file = 'main.cpp', line = %d, exact_match = 0, locations = 1" % self.break_4])
 
         # Run the program.
         self.runCmd("run", RUN_SUCCEEDED)





More information about the lldb-commits mailing list