Lines Matching refs:status
1885 @unittest.skipIf(not os.path.exists('/proc/self/status'),
1886 "need /proc/self/status")
1888 # Blindly assume that cat exists on systems with /proc/self/status...
1890 ['cat', '/proc/self/status'],
1897 self.skipTest("SigIgn not found in /proc/self/status.")
1899 ['cat', '/proc/self/status'],
2150 self.assertIn("non-zero exit status 2.", error_string)
3278 status = _testcapi.W_STOPCODE(3)
3279 with mock.patch('subprocess.os.waitpid', return_value=(proc.pid, status)):
3285 # bpo-38630: send_signal() must poll the process exit status to reduce
3302 # Don't check the returncode value: the test reads the exit status,
3664 status, output = subprocess.getstatusoutput(
3666 self.assertNotEqual(status, 0)