diff options
author | Enrico Granata <egranata@apple.com> | 2013-10-31 23:14:48 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-10-31 23:14:48 +0000 |
commit | 7eeda5858841e3967f390a0597f02e40363749f7 (patch) | |
tree | b22b985276b878432e45ee16f1305291cfd5407d /lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py | |
parent | 7037b3f915919121ea92bc1ae7fa9d60d3dd6427 (diff) | |
download | bcm5719-llvm-7eeda5858841e3967f390a0597f02e40363749f7.tar.gz bcm5719-llvm-7eeda5858841e3967f390a0597f02e40363749f7.zip |
Fix this test to be consistent in whether a process will or will not be there
llvm-svn: 193827
Diffstat (limited to 'lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py')
-rw-r--r-- | lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py index a7c1ee6c7d4..4c6131a1b80 100644 --- a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py +++ b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py @@ -216,8 +216,8 @@ class CrashingRecursiveInferiorTestCase(TestBase): self.expect("next", substrs = ['Process', expected_state]) - self.expect("thread list", error=True, - substrs = ['Process must be launched']) + if not(sys.platform.startswith("darwin")): # if stopped, we will have a process around + self.expect("thread list", error=True,substrs = ['Process must be launched']) def recursive_inferior_crashing_expr_step_expr(self): """Test that lldb expressions work before and after stepping after a crash.""" |