Fix test expectation in TestThreadExit after r237566

llvm-svn: 237578
This commit is contained in:
Tamas Berghammer 2015-05-18 16:08:06 +00:00
parent 8dd974f735
commit 45176c2341
1 changed files with 4 additions and 4 deletions

View File

@ -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)