Home
last modified time | relevance | path

Searched refs:exitCode (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/libcxx/utils/libcxx/
H A Dutil.py165 def __init__(self, msg, out, err, exitCode): argument
169 assert isinstance(exitCode, int)
173 self.exitCode = exitCode
222 exitCode = p.wait()
236 exitCode=exitCode
240 if exitCode == -signal.SIGINT:
243 return out, err, exitCode
283 out, err, exitCode = executeCommand(cmd, *args, **kwargs)
284 if exitCode != 0:
285 report = makeReport(cmd, out, err, exitCode)
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/builtin_commands/
H A Ddiff.py53 exitCode = 0
72 exitCode = 1
73 return exitCode
84 exitCode = 0
104 exitCode = 1
105 return exitCode
149 exitCode = 0
156 exitCode = 1
160 exitCode = 1
164 exitCode |= compareDirTrees(flags,
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/
H A Dmerge_archives.py58 exitCode = p.wait()
59 if exitCode == -signal.SIGINT:
61 return out, err, exitCode
68 out, err, exitCode = execute_command(cmd, cwd=cwd)
69 if exitCode != 0 or verbose:
71 if exitCode != 0:
72 report += "Exit Code: %d\n" % exitCode
77 if exitCode != 0:
80 if exitCode != 0:
81 exit_with_cleanups(exitCode)
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A DTestRunner.py142 def __init__(self, command, stdout, stderr, exitCode, timeoutReached, argument
147 self.exitCode = exitCode
373 exitCode = 0
387 exitCode = 1
388 return ShellCommandResult(cmd, "", stderr.getvalue(), exitCode, False)
418 exitCode = 0
431 exitCode = 1
484 exitCode = 1
485 return ShellCommandResult(cmd, "", stderr.getvalue(), exitCode, False)
694 result.exitCode = int(not result.exitCode)
[all …]
H A Dutil.py301 def __init__(self, msg, out, err, exitCode): argument
305 assert isinstance(exitCode, int)
309 self.exitCode = exitCode
361 exitCode = p.wait()
375 exitCode=exitCode
379 if exitCode == -signal.SIGINT:
382 return out, err, exitCode
H A DLitConfig.py138 _, _, exitCode = lit.util.executeCommand(command)
139 if exitCode:
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
H A Ddsl.py97 out, err, exitCode, timeoutInfo = _executeScriptInternal(test, ['%{build}'])
99 return exitCode == 0
117 _, _, exitCode, _ = _executeScriptInternal(test, ['%{build}'])
118 if exitCode != 0:
121 out, err, exitCode, _ = _executeScriptInternal(test, ["%{{run}} {}".format(' '.join(args))])
122 if exitCode != 0:
141 out, err, exitCode, timeoutInfo = _executeScriptInternal(test, [
144 return exitCode == 0
192 unparsedOutput, err, exitCode, timeoutInfo = _executeScriptInternal(test, [
223 unparsedOutput, err, exitCode, timeoutInfo = _executeScriptInternal(test, [
H A Dgooglebenchmark.py103 out, err, exitCode = lit.util.executeCommand(
112 if exitCode:
113 return lit.Test.FAIL, ('exit code: %d\n' % exitCode) + out + err
/netbsd-src/external/apache2/llvm/dist/clang/utils/
H A DCmpDriver113 self.exitCode = res
205 if infoA.exitCode != infoB.exitCode:
207 print 'A: ',infoA.exitCode
208 print 'B: ',infoB.exitCode
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/formats/
H A Dbase.py103 out, err, exitCode = lit.util.executeCommand(cmd)
106 if not exitCode and not diags.strip():
128 out, err, exitCode = lit.util.executeCommand(test.getSourcePath())
130 if not exitCode:
H A Dgoogletest.py128 out, err, exitCode = lit.util.executeCommand(
136 if exitCode:
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/gbench/
H A Dutil.py141 exitCode = subprocess.call(cmd)
142 if exitCode != 0:
144 sys.exit(exitCode)
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/tools/gbench/
H A Dutil.py136 exitCode = subprocess.call(cmd)
137 if exitCode != 0:
139 sys.exit(exitCode)
/netbsd-src/external/mit/libuv/dist/test/
H A Drunner-win.c294 DWORD exitCode; in process_reap() local
295 if (!GetExitCodeProcess(p->process, &exitCode)) in process_reap()
297 return (int)exitCode; in process_reap()
/netbsd-src/external/mit/expat/dist/xmlwf/
H A Dxmlwf.c969 int exitCode = XMLWF_EXIT_SUCCESS; in tmain() local
1177 exitCode = XMLWF_EXIT_OUTPUT_ERROR; in tmain()
1246 exitCode = XMLWF_EXIT_NOT_WELLFORMED; in tmain()
1253 return exitCode; in tmain()
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cc/
H A Dcc.c1396 DWORD exitCode; in strlist_exec() local
1424 GetExitCodeProcess(pi.hProcess, &exitCode); in strlist_exec()
1428 return (exitCode != 0); in strlist_exec()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dprocess.d1537 _exitCode = exitCode;
1538 return exitCode;
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dprocess.d2302 _exitCode = exitCode;
2303 return exitCode;