/llvm-project/clang/utils/TestUtils/ |
H A D | pch-test.pl | 10 $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 D | kernel.py | 135 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 D | iossim_run.py | 61 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 D | iossim_env.py | 14 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 D | thread_simple.cpp | 14 DWORD exitcode; in main() local 21 GetExitCodeThread(thr, &exitcode); in main() 22 if (exitcode != 0x42) in main()
|
H A D | thread_suspended.cpp | 14 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 D | test_create_cdb.py | 84 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 D | lit.cfg.py | 129 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 D | msan_linux.cpp | 209 if (common_flags()->exitcode) in MsanAtExit() 210 internal__exit(common_flags()->exitcode); in MsanAtExit()
|
H A D | msan_flags.inc | 20 "DEPRECATED. Use exitcode from common flags instead.")
|
/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_flags.cpp | 55 cf.exitcode = 1; in InitializeFlags()
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_termination.cpp | 59 internal__exit(common_flags()->exitcode); in Die()
|
H A D | sanitizer_netbsd.cpp | 212 void internal__exit(int exitcode) { in internal__exit() argument 214 _REAL(_exit, exitcode); in internal__exit()
|
H A D | sanitizer_libc.h | 91 void NORETURN internal__exit(int exitcode);
|
H A D | sanitizer_fuchsia.cpp | 32 void NORETURN internal__exit(int exitcode) { _zx_process_exit(exitcode); } in internal__exit() argument
|
H A D | sanitizer_symbolizer_report.cpp | 330 internal__exit(common_flags()->exitcode); in Lock()
|
/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan.cpp | 61 cf.exitcode = 23; in InitializeFlags()
|
H A D | lsan_common_linux.cpp | 115 if (common_flags()->exitcode) Die();
|
H A D | lsan_common_fuchsia.cpp | 66 return status == 0 && HasReportedLeaks() ? common_flags()->exitcode : status; in ExitHook()
|
/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_flags.cpp | 70 cf.exitcode = 66; in InitializeFlags()
|
/llvm-project/bolt/utils/ |
H A D | llvm-bolt-wrapper.py | 250 def clean_exit(tmp, out, exitcode, cfg): argument 257 sys.exit(exitcode)
|
/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_flags.cpp | 76 cf.exitcode = 1; in InitializeFlags()
|
/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan.cpp | 84 cf.exitcode = 99; in InitializeFlags() 220 if (common_flags()->exitcode) in HwasanAtExit() 221 internal__exit(common_flags()->exitcode); in HwasanAtExit()
|
H A D | hwasan_interceptors.cpp | 508 return common_flags()->exitcode; in OnExit()
|
/llvm-project/openmp/tools/archer/tests/ |
H A D | lit.cfg | 127 config.substitutions.append(("%nosuppression", "env TSAN_OPTIONS='ignore_noninstrumented_modules=0:exitcode=0'"))
|