Fixed TestInferiorChanged
authorChaoren Lin <chaorenl@google.com>
Tue, 3 Feb 2015 01:51:06 +0000 (01:51 +0000)
committerChaoren Lin <chaorenl@google.com>
Tue, 3 Feb 2015 01:51:06 +0000 (01:51 +0000)
replaced expected stop reason 'address invalid' with 'signal SIGSEGV'

llvm-svn: 227921

lldb/test/functionalities/inferior-changed/TestInferiorChanged.py

index ef078fb..3a95f54 100644 (file)
@@ -52,7 +52,7 @@ class ChangedInferiorTestCase(TestBase):
         if sys.platform.startswith("darwin"):
             stop_reason = 'stop reason = EXC_BAD_ACCESS'
         else:
-            stop_reason = 'stop reason = invalid address'
+            stop_reason = 'stop reason = signal SIGSEGV'
 
         # The stop reason of the thread should be a bad access exception.
         self.expect("thread list", STOPPED_DUE_TO_EXC_BAD_ACCESS,