Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/LLVM/utils/lit/lit/
DTestRunner.py33 exitCode = p.wait()
36 if exitCode == -signal.SIGINT:
39 return out, err, exitCode
210 exitCode = None
221 exitCode = min(exitCode, res)
223 exitCode = max(exitCode, res)
225 exitCode = res
235 exitCode = not exitCode
237 return exitCode
248 exitCode = executeShCmd(cmd, test.config, cwd, results)
[all …]
DTestFormats.py92 out, err, exitCode = TestRunner.executeCommand(
95 if not exitCode:
209 out, err, exitCode = TestRunner.executeCommand(cmd)
212 if not exitCode and not diags.strip():
/external/libcxx/utils/libcxx/
Dutil.py166 def __init__(self, msg, out, err, exitCode): argument
170 assert isinstance(exitCode, int)
174 self.exitCode = exitCode
223 exitCode = p.wait()
237 exitCode=exitCode
241 if exitCode == -signal.SIGINT:
244 return out, err, exitCode
281 out, err, exitCode = executeCommand(cmd, *args, **kwargs)
282 if exitCode != 0:
283 report = makeReport(cmd, out, err, exitCode)
[all …]
/external/libcxx/utils/
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)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
DTestRunner.py144 def __init__(self, command, stdout, stderr, exitCode, timeoutReached, argument
149 self.exitCode = exitCode
345 exitCode = 0
356 exitCode = 1
357 return ShellCommandResult(cmd, "", stderr.getvalue(), exitCode, False)
428 exitCode = 0
440 exitCode = 1
441 return exitCode
453 exitCode = 0
471 exitCode = 1
[all …]
Dutil.py281 def __init__(self, msg, out, err, exitCode): argument
285 assert isinstance(exitCode, int)
289 self.exitCode = exitCode
341 exitCode = p.wait()
355 exitCode=exitCode
359 if exitCode == -signal.SIGINT:
362 return out, err, exitCode
/external/llvm/utils/lit/lit/
DTestRunner.py116 def __init__(self, command, stdout, stderr, exitCode, timeoutReached, argument
121 self.exitCode = exitCode
376 exitCode = None
417 if exitCode is None:
418 exitCode = res
420 exitCode = min(exitCode, res)
422 exitCode = max(exitCode, res)
424 exitCode = res
434 exitCode = not exitCode
436 return exitCode
[all …]
Dutil.py162 def __init__(self, msg, out, err, exitCode): argument
166 assert isinstance(exitCode, int)
170 self.exitCode = exitCode
217 exitCode = p.wait()
231 exitCode=exitCode
235 if exitCode == -signal.SIGINT:
238 return out, err, exitCode
/external/jsoncpp/src/jsontestrunner/
Dmain.cpp231 int exitCode = parseCommandLine(argc, argv, features, path, parseOnly); in main() local
232 if (exitCode != 0) { in main()
233 return exitCode; in main()
255 exitCode = parseAndSaveValueTree( in main()
257 if (exitCode == 0 && !parseOnly) { in main()
259 exitCode = rewriteValueTree(rewritePath, root, rewrite); in main()
260 if (exitCode == 0) { in main()
262 exitCode = parseAndSaveValueTree(rewrite, in main()
273 exitCode = 1; in main()
276 return exitCode; in main()
/external/vulkan-validation-layers/build-android/
Dtest_APK.sh178 exitCode=-1;
192 exitCode=0
203 exitCode=1
211 exitCode=2
225 if [ $exitCode -eq -1 ]
263 if [ $exitCode -ne 0 ]
278 exit $exitCode
/external/swiftshader/third_party/LLVM/tools/llvm-ranlib/
Dllvm-ranlib.cpp62 int exitCode = 0; in main() local
92 exitCode = 1; in main()
95 exitCode = 2; in main()
98 exitCode = 3; in main()
100 return exitCode; in main()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DExitTest.java69 int exitCode = 0; in testExit001() local
76 exitCode = debuggeeWrapper.process.exitValue(); in testExit001()
88 logWriter.println("exitCode = " + exitCode); in testExit001()
89 assertEquals("Invalid exit code,", 99, exitCode); in testExit001()
/external/clang/utils/
DCmpDriver113 self.exitCode = res
205 if infoA.exitCode != infoB.exitCode:
207 print 'A: ',infoA.exitCode
208 print 'B: ',infoB.exitCode
/external/deqp/framework/delibs/deutil/
DdeProcess.c52 int exitCode; member
185 return process->exitCode; in deProcess_getExitCode()
420 process->exitCode = WEXITSTATUS(status); in deProcess_waitForFinish()
523 int exitCode; member
625 return process->exitCode; in deProcess_getExitCode()
737 int exitCode; in deProcess_isRunning() local
738 BOOL result = GetExitCodeProcess(process->procInfo.hProcess, (LPDWORD)&exitCode); in deProcess_isRunning()
746 if (exitCode == STILL_ACTIVE) in deProcess_isRunning()
751 process->exitCode = exitCode; in deProcess_isRunning()
/external/lzma/CPP/7zip/UI/Console/
DMainAr.cpp108 catch(NExitCode::EEnum &exitCode) in main() local
112 *g_ErrStream << kInternalExceptionMessage << exitCode << endl; in main()
113 return (exitCode); in main()
/external/libcxx/utils/google-benchmark/tools/gbench/
Dutil.py141 exitCode = subprocess.call(cmd)
142 if exitCode != 0:
144 sys.exit(exitCode)
/external/google-benchmark/tools/gbench/
Dutil.py141 exitCode = subprocess.call(cmd)
142 if exitCode != 0:
144 sys.exit(exitCode)
/external/lzma/CPP/Windows/
DThread.h30 bool Terminate(DWORD exitCode) { return BOOLToBool(::TerminateThread(thread, exitCode)); } in Terminate() argument
/external/libcxx/utils/libcxx/android/
Dexecutors.py20 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
22 if exitCode != 0:
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPUnitDebuggeeProcessWrapper.java307 int exitCode = process.exitValue(); in WaitForProcessExit() local
308 logWriter.println("Finished debuggee with exit code: " + exitCode); in WaitForProcessExit()
309 if (exitCode != expectedExitCode) { in WaitForProcessExit()
310 throw new TestErrorException("Debuggee exited with code " + exitCode + in WaitForProcessExit()
/external/skia/infra/cts/
Drun_testlab.go243 exitCode := 0
254 exitCode = ws.ExitStatus()
258 sklog.Errorf("Exit code: %d", exitCode)
262 if exitCode != 10 {
273 ExitCode: exitCode,
/external/skqp/infra/cts/
Drun_testlab.go243 exitCode := 0
254 exitCode = ws.ExitStatus()
258 sklog.Errorf("Exit code: %d", exitCode)
262 if exitCode != 10 {
273 ExitCode: exitCode,
/external/catch2/include/internal/
Dcatch_session.cpp228 int exitCode = runInternal(); in run() local
230 …Catch::cout() << "...waiting for enter/ return before exiting, with code: " << exitCode << std::en… in run()
233 return exitCode; in run()
/external/deqp/execserver/
DxsProtocol.hpp156 int exitCode; member in xs::ProcessFinishedMessage
159 …ProcessFinishedMessage (int exitCode_) : Message(MESSAGETYPE_PROCESS_FINISHED), exitCode(exitCod… in ProcessFinishedMessage()
/external/llvm/utils/lit/lit/formats/
Dbase.py104 out, err, exitCode = lit.util.executeCommand(cmd)
107 if not exitCode and not diags.strip():

12