summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/signals/TestSignalsAPI.py
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2014-06-23 20:56:48 +0000
committerTodd Fiala <todd.fiala@gmail.com>2014-06-23 20:56:48 +0000
commit9b0957870c36d40eaef1e614059cce80e45b61c1 (patch)
treedf539491d9372751685d1c3f67e4289dbc4ea12d /lldb/test/python_api/signals/TestSignalsAPI.py
parent703c3c8746f0900e179821dc3faf67764e450cec (diff)
downloadbcm5719-llvm-9b0957870c36d40eaef1e614059cce80e45b61c1.tar.gz
bcm5719-llvm-9b0957870c36d40eaef1e614059cce80e45b61c1.zip
Part 2 of SBUnitSignals check-in.
I missed adding a few new files to the change list. The build is broken from r211526 without this fix. (And Ed Maste caught it before I did, so this is the remainder - the test methods). llvm-svn: 211535
Diffstat (limited to 'lldb/test/python_api/signals/TestSignalsAPI.py')
-rw-r--r--lldb/test/python_api/signals/TestSignalsAPI.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/lldb/test/python_api/signals/TestSignalsAPI.py b/lldb/test/python_api/signals/TestSignalsAPI.py
new file mode 100644
index 00000000000..9702284b870
--- /dev/null
+++ b/lldb/test/python_api/signals/TestSignalsAPI.py
@@ -0,0 +1,49 @@
+"""
+Test SBProcess APIs, including ReadMemory(), WriteMemory(), and others.
+"""
+
+import os, time
+import unittest2
+import lldb
+from lldbutil import get_stopped_thread, state_type_to_str
+from lldbtest import *
+
+class SignalsAPITestCase(TestBase):
+ mydir = os.path.join("python_api", "signals")
+
+ @python_api_test
+ def test_ignore_signal(self):
+ """Test Python SBUnixSignals.Suppress/Stop/Notify() API."""
+ self.buildDefault()
+ exe = os.path.join(os.getcwd(), "a.out")
+ self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
+
+ target = self.dbg.CreateTarget(exe)
+ self.assertTrue(target, VALID_TARGET)
+
+ line = line_number("main.cpp", "// Set break point at this line and setup signal ignores.")
+ breakpoint = target.BreakpointCreateByLocation("main.cpp", line)
+ self.assertTrue(breakpoint, VALID_BREAKPOINT)
+
+ # Launch the process, and do not stop at the entry point.
+ process = target.LaunchSimple (None, None, self.get_process_working_directory())
+
+ thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
+ self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint")
+
+ unix_signals = process.GetUnixSignals()
+ sigint = unix_signals.GetSignalNumberFromName("SIGINT")
+ unix_signals.SetShouldSuppress(sigint, True)
+ unix_signals.SetShouldStop(sigint, False)
+ unix_signals.SetShouldNotify(sigint, False)
+
+ process.Continue()
+ self.assertTrue(process.state == lldb.eStateExited, "The process should have exited")
+ self.assertTrue(process.GetExitStatus() == 0, "The process should have returned 0")
+
+
+if __name__ == '__main__':
+ import atexit
+ lldb.SBDebugger.Initialize()
+ atexit.register(lambda: lldb.SBDebugger.Terminate())
+ unittest2.main()
OpenPOWER on IntegriCloud