| /third_party/python/Lib/test/ |
| D | test_audit.py | 29 if p.returncode: 43 p.returncode, 80 returncode, events, stderr = self.run_python("test_excepthook") 81 if not returncode: 89 returncode, events, stderr = self.run_python("test_unraisablehook") 90 if returncode: 101 returncode, events, stderr = self.run_python("test_winreg") 102 if returncode: 115 returncode, events, stderr = self.run_python("test_socket") 116 if returncode: [all …]
|
| /third_party/jerryscript/tools/runners/ |
| D | run-test-suite.py | 101 return (process.returncode, stdout) 151 (returncode, stdout) = execute_test_command(test_cmd + [test]) 153 … if (returncode == 0 and not is_expected_to_fail) or (returncode == 1 and is_expected_to_fail): 159 …passed_string = 'FAIL%s (%d)' % (' (XPASS)' if returncode == 0 and is_expected_to_fail else '', re… 190 (returncode, stdout) = execute_test_command(generate_snapshot_cmd + [test]) 192 if (returncode == 0) or (returncode == 1 and is_expected_to_fail): 194 passed_string = 'PASS' + (' (XFAIL)' if returncode else '') 197 … util.print_test_result(tested, total, False, 'FAIL (%d)' % (returncode), test_path, True) 202 if returncode: 207 (returncode, stdout) = execute_test_command(execute_snapshot_cmd) [all …]
|
| /third_party/flutter/skia/third_party/externals/harfbuzz/test/fuzzing/ |
| D | run-shape-fuzzer-tests.py | 43 returncode = p.returncode 49 returncode = 1 51 return text, returncode 86 …text, returncode = cmd (libtool.split(' ') + ['--mode=execute', valgrind + ' --leak-check=full --e… variable 88 text, returncode = cmd ([hb_shape_fuzzer, path]) variable 90 returncode = 1 variable 95 if returncode != 0:
|
| D | run-subset-fuzzer-tests.py | 43 returncode = p.returncode 49 returncode = 1 51 return text, returncode 88 …text, returncode = cmd (libtool.split(' ') + ['--mode=execute', valgrind + ' --leak-check=full --s… 90 text, returncode = cmd ([hb_subset_fuzzer, path]) 92 returncode = 1 97 if returncode != 0:
|
| /third_party/icu/icu4c/source/python/icutools/databuilder/renderers/ |
| D | common_exec.py | 105 returncode = run_shell_command(command_line, platform, verbose) 106 if returncode != 0: 107 return returncode 118 returncode = run_shell_command(command_line, platform, verbose) 119 return returncode 138 returncode = subprocess.call( 145 returncode = subprocess.call( 153 if returncode != 0: 155 return returncode
|
| /third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/renderers/ |
| D | common_exec.py | 105 returncode = run_shell_command(command_line, platform, verbose) 106 if returncode != 0: 107 return returncode 118 returncode = run_shell_command(command_line, platform, verbose) 119 return returncode 138 returncode = subprocess.call( 145 returncode = subprocess.call( 153 if returncode != 0: 155 return returncode
|
| /third_party/python/Lib/multiprocessing/ |
| D | popen_fork.py | 17 self.returncode = None 25 if self.returncode is None: 33 self.returncode = os.waitstatus_to_exitcode(sts) 34 return self.returncode 37 if self.returncode is None: 44 return self.returncode 47 if self.returncode is None:
|
| D | popen_spawn_win32.py | 83 self.returncode = None 102 if self.returncode is None: 113 self.returncode = code 115 return self.returncode 121 if self.returncode is None:
|
| D | popen_forkserver.py | 62 if self.returncode is None: 68 self.returncode = forkserver.read_signed(self.sentinel) 72 self.returncode = 255 74 return self.returncode
|
| /third_party/harfbuzz/test/fuzzing/ |
| D | run-draw-fuzzer-tests.py | 19 return ("" if is_debug_mode else text.decode ("utf-8").strip ()), p.returncode 51 …text, returncode = cmd ([valgrind, '--leak-check=full', '--error-exitcode=1', hb_draw_fuzzer, path… variable 53 text, returncode = cmd ([hb_draw_fuzzer, path]) variable 55 returncode = 1 variable 57 if (not valgrind or returncode) and text.strip (): 60 if returncode != 0:
|
| D | run-shape-fuzzer-tests.py | 19 return ("" if is_debug_mode else text.decode ("utf-8").strip ()), p.returncode 50 …text, returncode = cmd ([valgrind, '--leak-check=full', '--error-exitcode=1', hb_shape_fuzzer, pat… variable 52 text, returncode = cmd ([hb_shape_fuzzer, path]) variable 54 returncode = 1 variable 56 if (not valgrind or returncode) and text.strip (): 59 if returncode != 0:
|
| D | run-subset-fuzzer-tests.py | 19 return ("" if is_debug_mode else text.decode ("utf-8").strip ()), p.returncode 54 …text, returncode = cmd ([valgrind, '--leak-check=full', '--error-exitcode=1', hb_subset_fuzzer, pa… 56 text, returncode = cmd ([hb_subset_fuzzer, path]) 58 returncode = 1 60 if (not valgrind or returncode) and text.strip (): 63 if returncode != 0:
|
| /third_party/skia/third_party/externals/harfbuzz/test/fuzzing/ |
| D | run-draw-fuzzer-tests.py | 19 return ("" if is_debug_mode else text.decode ("utf-8").strip ()), p.returncode 51 …text, returncode = cmd ([valgrind, '--leak-check=full', '--error-exitcode=1', hb_draw_fuzzer, path… variable 53 text, returncode = cmd ([hb_draw_fuzzer, path]) variable 55 returncode = 1 variable 57 if (not valgrind or returncode) and text.strip (): 60 if returncode != 0:
|
| D | run-shape-fuzzer-tests.py | 19 return ("" if is_debug_mode else text.decode ("utf-8").strip ()), p.returncode 50 …text, returncode = cmd ([valgrind, '--leak-check=full', '--error-exitcode=1', hb_shape_fuzzer, pat… variable 52 text, returncode = cmd ([hb_shape_fuzzer, path]) variable 54 returncode = 1 variable 56 if (not valgrind or returncode) and text.strip (): 59 if returncode != 0:
|
| D | run-subset-fuzzer-tests.py | 19 return ("" if is_debug_mode else text.decode ("utf-8").strip ()), p.returncode 54 …text, returncode = cmd ([valgrind, '--leak-check=full', '--error-exitcode=1', hb_subset_fuzzer, pa… 56 text, returncode = cmd ([hb_subset_fuzzer, path]) 58 returncode = 1 60 if (not valgrind or returncode) and text.strip (): 63 if returncode != 0:
|
| /third_party/python/Lib/ |
| D | subprocess.py | 111 def __init__(self, returncode, cmd, output=None, stderr=None): argument 112 self.returncode = returncode 118 if self.returncode and self.returncode < 0: 121 self.cmd, signal.Signals(-self.returncode)) 124 self.cmd, -self.returncode) 127 self.cmd, self.returncode) 435 def __init__(self, args, returncode, stdout=None, stderr=None): argument 437 self.returncode = returncode 443 'returncode={!r}'.format(self.returncode)] 455 if self.returncode: [all …]
|
| /third_party/python/Lib/asyncio/ |
| D | base_subprocess.py | 207 def _process_exited(self, returncode): argument 208 assert returncode is not None, returncode 211 logger.info('%r exited with return code %r', self, returncode) 212 self._returncode = returncode 213 if self._proc.returncode is None: 216 self._proc.returncode = returncode 223 waiter.set_result(returncode)
|
| D | unix_events.py | 225 def _child_watcher_callback(self, pid, returncode, transp): argument 226 self.call_soon_threadsafe(transp._process_exited, returncode) 948 returncode = 255 954 returncode = waitstatus_to_exitcode(status) 957 callback(pid, returncode, *args) 1070 returncode = 255 1079 returncode = waitstatus_to_exitcode(status) 1082 expected_pid, returncode) 1093 callback(pid, returncode, *args) 1142 returncode = self._zombies.pop(pid) [all …]
|
| /third_party/skia/tools/ |
| D | build_command_buffer.py | 98 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode, 105 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode, 114 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode, 122 error.returncode, error.cmd, chrome_src_dir)) 138 error.returncode, error.cmd, chrome_src_dir)) 145 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode,
|
| /third_party/flutter/skia/tools/ |
| D | build_command_buffer.py | 98 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode, 105 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode, 114 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode, 122 error.returncode, error.cmd, chrome_src_dir)) 138 error.returncode, error.cmd, chrome_src_dir)) 145 sys.exit('Error (ret code: %s) calling "%s" in %s' % (error.returncode,
|
| /third_party/jerryscript/tools/ |
| D | run_jerry_tdd_executable.py | 63 returncode = str(subp.returncode) 64 if returncode != args.expect_output: 70 + "]\n>>>>> But got: [" + returncode + "]")
|
| /third_party/python/Lib/test/test_asyncio/ |
| D | test_subprocess.py | 145 return proc.returncode, stdout 177 returncode = self.loop.run_until_complete(proc.wait()) 179 self.assertIsInstance(returncode, int) 182 self.assertEqual(-signal.SIGKILL, returncode) 190 returncode = self.loop.run_until_complete(proc.wait()) 192 self.assertIsInstance(returncode, int) 195 self.assertEqual(-signal.SIGTERM, returncode) 219 returncode = await proc.wait() 220 return returncode 222 returncode = self.loop.run_until_complete(send_signal(proc)) [all …]
|
| /third_party/rust/crates/strsim-rs/ |
| D | dev | 17 sys.exit(run(command + ['cargo'] + remaining or []).returncode) 23 sys.exit(run(command + ['bash']).returncode) 29 sys.exit(run(command + ['cargo', 'test']).returncode)
|
| /third_party/rust/crates/bindgen/csmith-fuzzing/ |
| D | predicate.py | 216 if args.expect_bindgen_fail and child.returncode == 0: 219 if not args.expect_bindgen_fail and child.returncode != 0: 248 if args.expect_compile_fail and child.returncode == 0: 251 if not args.expect_compile_fail and child.returncode != 0: 266 if args.expect_layout_tests_fail and child.returncode == 0: 269 if not args.expect_layout_tests_fail and child.returncode != 0:
|
| /third_party/skia/third_party/externals/spirv-tools/test/tools/ |
| D | expect_unittest.py | 52 returncode=0, 64 returncode=0, 76 returncode=0,
|