[Lldb-commits] [lldb] r227921 - Fixed TestInferiorChanged

Chaoren Lin chaorenl at google.com
Mon Feb 2 17:51:06 PST 2015


Author: chaoren
Date: Mon Feb  2 19:51:06 2015
New Revision: 227921

URL: http://llvm.org/viewvc/llvm-project?rev=227921&view=rev
Log:
Fixed TestInferiorChanged

replaced expected stop reason 'address invalid' with 'signal SIGSEGV'

Modified:
    lldb/trunk/test/functionalities/inferior-changed/TestInferiorChanged.py

Modified: lldb/trunk/test/functionalities/inferior-changed/TestInferiorChanged.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-changed/TestInferiorChanged.py?rev=227921&r1=227920&r2=227921&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-changed/TestInferiorChanged.py (original)
+++ lldb/trunk/test/functionalities/inferior-changed/TestInferiorChanged.py Mon Feb  2 19:51:06 2015
@@ -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,





More information about the lldb-commits mailing list