1 """Tests that an exceptional exit is detected by the testbot."""
9 import lldbsuite.test.lldbtest as lldbtest
12 class ExceptionalExitOutOfTestMethodTestCase(lldbtest.TestBase):
13 """Forces exceptional exit."""
14 mydir = lldbtest.TestBase.compute_mydir(__file__)
16 @lldbtest.skipIfWindows
17 def test_buildbot_catches_exceptional_exit(self):
21 os.kill(os.getpid(), signal.SIGKILL)
23 atexit.register(cleanup)