Home
last modified time | relevance | path

Searched refs:exitcode (Results 1 – 25 of 36) sorted by relevance

12

/llvm-project/clang/utils/TestUtils/
H A Dpch-test.pl10 $exitcode = 0;
30 exit($exitcode);
33 $exitcode = 1;
38 exit($exitcode);
41 $exitcode = 1;
45 exit($exitcode);
62 exit($exitcode);
/llvm-project/mlir/utils/jupyter/mlir_opt_kernel/
H A Dkernel.py135 exitcode = pipe.returncode
145 return output, errors, exitcode
152 output, errors, exitcode = run(code)
154 if exitcode:
164 exitcode = 255
167 if exitcode:
168 content = {"ename": "", "evalue": str(exitcode), "traceback": []}
/llvm-project/compiler-rt/test/sanitizer_common/ios_commands/
H A Diossim_run.py61 exitcode = subprocess.call(rm_cmd_line_str, shell=True) variable
75 exitcode = subprocess.call(cmd) variable
76 if exitcode > 125:
77 exitcode = 126 variable
78 sys.exit(exitcode)
H A Diossim_env.py14 exitcode = subprocess.call(sys.argv[idx:]) variable
15 if exitcode > 125:
16 exitcode = 126 variable
17 sys.exit(exitcode)
/llvm-project/compiler-rt/test/asan/TestCases/Windows/
H A Dthread_simple.cpp14 DWORD exitcode; in main() local
21 GetExitCodeThread(thr, &exitcode); in main()
22 if (exitcode != 0x42) in main()
H A Dthread_suspended.cpp14 DWORD exitcode; in main() local
22 GetExitCodeThread(thr, &exitcode); in main()
23 if (exitcode != 0x42) in main()
/llvm-project/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_create_cdb.py84 exitcode = self.run_intercept(tmpdir, "build_clean")
85 self.assertFalse(exitcode)
89 exitcode = self.run_intercept(tmpdir, "build_broken")
90 self.assertTrue(exitcode)
/llvm-project/lldb/test/Shell/
H A Dlit.cfg.py129 out, err, exitcode = lit.util.executeCommand([cpuid_exe])
130 if exitcode == 0:
132 out, err, exitcode = lit.util.executeCommand([cpuid_exe]) global() variable
/llvm-project/compiler-rt/lib/msan/
H A Dmsan_linux.cpp209 if (common_flags()->exitcode) in MsanAtExit()
210 internal__exit(common_flags()->exitcode); in MsanAtExit()
H A Dmsan_flags.inc20 "DEPRECATED. Use exitcode from common flags instead.")
/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_flags.cpp55 cf.exitcode = 1; in InitializeFlags()
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_termination.cpp59 internal__exit(common_flags()->exitcode); in Die()
H A Dsanitizer_netbsd.cpp212 void internal__exit(int exitcode) { in internal__exit() argument
214 _REAL(_exit, exitcode); in internal__exit()
H A Dsanitizer_libc.h91 void NORETURN internal__exit(int exitcode);
H A Dsanitizer_fuchsia.cpp32 void NORETURN internal__exit(int exitcode) { _zx_process_exit(exitcode); } in internal__exit() argument
H A Dsanitizer_symbolizer_report.cpp330 internal__exit(common_flags()->exitcode); in Lock()
/llvm-project/compiler-rt/lib/lsan/
H A Dlsan.cpp61 cf.exitcode = 23; in InitializeFlags()
H A Dlsan_common_linux.cpp115 if (common_flags()->exitcode) Die();
H A Dlsan_common_fuchsia.cpp66 return status == 0 && HasReportedLeaks() ? common_flags()->exitcode : status; in ExitHook()
/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.cpp70 cf.exitcode = 66; in InitializeFlags()
/llvm-project/bolt/utils/
H A Dllvm-bolt-wrapper.py250 def clean_exit(tmp, out, exitcode, cfg): argument
257 sys.exit(exitcode)
/llvm-project/compiler-rt/lib/asan/
H A Dasan_flags.cpp76 cf.exitcode = 1; in InitializeFlags()
/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan.cpp84 cf.exitcode = 99; in InitializeFlags()
220 if (common_flags()->exitcode) in HwasanAtExit()
221 internal__exit(common_flags()->exitcode); in HwasanAtExit()
H A Dhwasan_interceptors.cpp508 return common_flags()->exitcode; in OnExit()
/llvm-project/openmp/tools/archer/tests/
H A Dlit.cfg127 config.substitutions.append(("%nosuppression", "env TSAN_OPTIONS='ignore_noninstrumented_modules=0:exitcode=0'"))

12