diff options
-rw-r--r-- | lldb/test/inferior-crashing/Makefile | 5 | ||||
-rw-r--r-- | lldb/test/inferior-crashing/TestInferiorCrashing.py | 79 | ||||
-rw-r--r-- | lldb/test/inferior-crashing/main.c | 8 |
3 files changed, 92 insertions, 0 deletions
diff --git a/lldb/test/inferior-crashing/Makefile b/lldb/test/inferior-crashing/Makefile new file mode 100644 index 00000000000..d6cd0db0506 --- /dev/null +++ b/lldb/test/inferior-crashing/Makefile @@ -0,0 +1,5 @@ +LEVEL = ../make + +C_SOURCES := main.c + +include $(LEVEL)/Makefile.rules diff --git a/lldb/test/inferior-crashing/TestInferiorCrashing.py b/lldb/test/inferior-crashing/TestInferiorCrashing.py new file mode 100644 index 00000000000..ad071f38aff --- /dev/null +++ b/lldb/test/inferior-crashing/TestInferiorCrashing.py @@ -0,0 +1,79 @@ +"""Test that lldb reliably catches the inferior crashing.""" + +import os, time +import unittest2 +import lldb +from lldbtest import * + +class CrashingInferiorTestCase(TestBase): + + mydir = "inferior-crashing" + + @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + def test_inferior_crashing_dsym(self): + """Test that lldb reliably catches the inferior crashing (command).""" + self.buildDsym() + self.inferior_crashing() + + def test_inferior_crashing_dwarf(self): + """Test that lldb reliably catches the inferior crashing (command).""" + self.buildDwarf() + self.inferior_crashing() + + @python_api_test + def test_inferior_crashing_python(self): + """Test that lldb reliably catches the inferior crashing (Python API).""" + self.buildDefault() + self.inferior_crashing_python() + + def setUp(self): + # Call super's setUp(). + TestBase.setUp(self) + # Find the line number of the crash. + self.line = line_number('main.c', '// Crash here.') + + def inferior_crashing(self): + """Inferior crashes upon launching; lldb should catch the event and stop.""" + exe = os.path.join(os.getcwd(), "a.out") + self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET) + + self.runCmd("run", RUN_SUCCEEDED) + + # The stop reason of the thread should be a bad access exception. + self.expect("thread list", STOPPED_DUE_TO_EXC_BAD_ACCESS, + substrs = ['state is stopped', + 'stop reason = EXC_BAD_ACCESS']) + + # And it should report the correct line number. + self.expect("thread backtrace", + substrs = ['stop reason = EXC_BAD_ACCESS', + 'main.c:%d' % self.line]) + + def inferior_crashing_python(self): + """Inferior crashes upon launching; lldb should catch the event and stop.""" + exe = os.path.join(os.getcwd(), "a.out") + + target = self.dbg.CreateTarget(exe) + self.assertTrue(target.IsValid(), VALID_TARGET) + + # Now launch the process, and do not stop at entry point. + # Both argv and envp are null. + self.process = target.LaunchSimple(None, None, os.getcwd()) + + import lldbutil + if self.process.GetState() != lldb.eStateStopped: + self.fail("Process should be in the 'stopped' state, " + "instead the actual state is: '%s'" % + lldbutil.StateTypeString(self.process.GetState())) + + thread = lldbutil.get_stopped_thread(self.process, lldb.eStopReasonException) + if not thread: + self.fail("Fail to stop the thread due to exception") + + lldbutil.PrintStackTrace(thread) + +if __name__ == '__main__': + import atexit + lldb.SBDebugger.Initialize() + atexit.register(lambda: lldb.SBDebugger.Terminate()) + unittest2.main() diff --git a/lldb/test/inferior-crashing/main.c b/lldb/test/inferior-crashing/main.c new file mode 100644 index 00000000000..9ce587e4145 --- /dev/null +++ b/lldb/test/inferior-crashing/main.c @@ -0,0 +1,8 @@ +#include <stdio.h> + +int main(int argc, const char* argv[]) +{ + int *null_ptr = 0; + printf("Hello, segfault!\n"); + printf("Now crash %d\n", *null_ptr); // Crash here. +} |