Home | History | Annotate | Download | only in signal

Lines Matching full:process

1 """Test that lldb command 'process signal SIGUSR1' to send a signal to the inferior works."""
16 """Test that lldb command 'process signal SIGUSR1' sends a signal to the inferior process."""
22 """Test that lldb command 'process signal SIGUSR1' sends a signal to the inferior process."""
33 """Test that lldb command 'process signal SIGUSR1' sends a signal to the inferior process."""
53 self.runCmd("process status")
55 pid = re.match("Process (.*) stopped", output).group(1)
57 # After resuming the process, send it a SIGUSR1 signal.
60 # be asynchronous, because we want to resume the process and to send it
63 self.runCmd("process continue")
67 self.runCmd("process handle -n False -p True -s True SIGUSR1")
69 self.runCmd("process signal SIGUSR1")
71 # Insert a delay of 1 second before checking the process status.
75 self.expect("process status", STOPPED_DUE_TO_SIGNAL,
76 startstr = "Process %s stopped" % pid,