From 20433ae11b4f653783d1e6ff102cd02cdbff1245 Mon Sep 17 00:00:00 2001 From: Chaoren Lin Date: Tue, 3 Feb 2015 01:51:06 +0000 Subject: [PATCH] Fixed TestInferiorChanged replaced expected stop reason 'address invalid' with 'signal SIGSEGV' llvm-svn: 227921 --- lldb/test/functionalities/inferior-changed/TestInferiorChanged.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/functionalities/inferior-changed/TestInferiorChanged.py b/lldb/test/functionalities/inferior-changed/TestInferiorChanged.py index ef078fb..3a95f54c 100644 --- a/lldb/test/functionalities/inferior-changed/TestInferiorChanged.py +++ b/lldb/test/functionalities/inferior-changed/TestInferiorChanged.py @@ -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, -- 2.7.4