diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-10-19 22:17:06 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-19 22:17:06 +0000 |
commit | c54de2ca548cab29714dd4a775c9abe92cacce3a (patch) | |
tree | 423bdb93ad0c4c6b23eab90fb9aac47ac1cd9f32 | |
parent | 09f76ee63c5179dddcd3eb608f392e33d5374f17 (diff) | |
download | bcm5719-llvm-c54de2ca548cab29714dd4a775c9abe92cacce3a.tar.gz bcm5719-llvm-c54de2ca548cab29714dd4a775c9abe92cacce3a.zip |
Missed this file when doing r142543 to temporarily relax the expected substrings for watchpoint creation output.
llvm-svn: 142549
-rw-r--r-- | lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py b/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py index 4f7168ab4f1..e5de8f88749 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py @@ -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'") |