[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / issue_verification / TestSignalOutsideTestMethod.py.park
blob425c5fe9077b2907780ce33a741998857c0d40b8
1 """Tests that an exceptional exit is detected by the testbot."""
4 import atexit
5 import os
6 import signal
7 import time
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):
18         pass
20 def cleanup():
21         os.kill(os.getpid(), signal.SIGKILL)
23 atexit.register(cleanup)