diff options
Diffstat (limited to 'lldb/test/expression_command/call-function')
-rw-r--r-- | lldb/test/expression_command/call-function/TestCallStdStringFunction.py | 2 | ||||
-rw-r--r-- | lldb/test/expression_command/call-function/TestCallStopAndContinue.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py index c36577a5413..6f1022e4584 100644 --- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py +++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py @@ -42,7 +42,7 @@ class ExprCommandCallFunctionTestCase(TestBase): # Some versions of GCC encode two locations for the 'return' statement in main.cpp lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=-1, loc_exact=True) - self.runCmd("run", RUN_SUCCEEDED) + self.runCmd("run", RUN_FAILED) self.expect("print str", substrs = ['Hello world']) diff --git a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py index 0814c408ccb..aa0e532778e 100644 --- a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py +++ b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py @@ -42,7 +42,7 @@ class ExprCommandCallStopContinueTestCase(TestBase): # Some versions of GCC encode two locations for the 'return' statement in main.cpp lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=-1, loc_exact=True) - self.runCmd("run", RUN_SUCCEEDED) + self.runCmd("run", RUN_FAILED) lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.func_line, num_expected_locations=-1, loc_exact=True) |