diff options
-rw-r--r-- | lldb/test/stop-hook/TestStopHookMechanism.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/stop-hook/TestStopHookMechanism.py b/lldb/test/stop-hook/TestStopHookMechanism.py index 1dcc380c8e2..fbff37f193b 100644 --- a/lldb/test/stop-hook/TestStopHookMechanism.py +++ b/lldb/test/stop-hook/TestStopHookMechanism.py @@ -69,7 +69,7 @@ class StopHookMechanismTestCase(TestBase): #self.DebugPExpect(child) # Verify that the 'Stop Hooks' mechanism is fired off. self.expect(child.before, exe=False, - substrs = ['(void *) $0 = 0x']) + substrs = ['(void *) $']) # Now continue the inferior, we'll stop at another breakpoint which is outside the stop-hook range. child.sendline('process continue') @@ -80,7 +80,7 @@ class StopHookMechanismTestCase(TestBase): #self.DebugPExpect(child) # Verify that the 'Stop Hooks' mechanism is NOT BEING fired off. self.expect(child.before, exe=False, matching=False, - substrs = ['(void *) $0 = 0x']) + substrs = ['(void *) $']) if __name__ == '__main__': |