Missed this file when doing r142543 to temporarily relax the expected substrings for watchpoint creation output.

llvm-svn: 142549
This commit is contained in:
Johnny Chen 2011-10-19 22:17:06 +00:00
parent 09f76ee63c
commit c54de2ca54
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,8 @@ class WatchpointConditionCmdTestCase(TestBase):
# With a condition of 'global==5'.
self.expect("frame variable -w write -g -L global", WATCHPOINT_CREATED,
substrs = ['Watchpoint created', 'size = 4', 'type = w',
'%s:%d' % (self.source, self.decl)])
#'%s:%d' % (self.source, self.decl)])
':%d' % (self.decl)])
self.runCmd("watchpoint modify -c 'global==5'")