| /llvm-project-15.0.7/lldb/test/Shell/ |
| H A D | CMakeLists.txt | 1 add_custom_target(lldb-shell-test-deps) 2 add_dependencies(lldb-shell-test-deps lldb-test-depends) 6 DEPENDS lldb-shell-test-deps) 17 add_lit_testsuite(check-lldb-shell "Running lldb shell test suite" 20 DEPENDS lldb-shell-test-deps)
|
| H A D | lit.site.cfg.py.in | 26 # The shell tests use their own module caches. 27 config.lldb_module_cache = os.path.join("@LLDB_TEST_MODULE_CACHE_LLDB@", "lldb-shell") 28 config.clang_module_cache = os.path.join("@LLDB_TEST_MODULE_CACHE_CLANG@", "lldb-shell")
|
| /llvm-project-15.0.7/compiler-rt/lib/asan/scripts/ |
| H A D | asan_device_setup | 41 $ADB shell su -c "rm \\\"$2/$FILENAME\\\"" >&/dev/null 42 $ADB shell su -c "cat \\\"/data/local/tmp/$FILENAME\\\" > \\\"$2/$FILENAME\\\"" 43 $ADB shell su -c "rm \\\"/data/local/tmp/$FILENAME\\\"" 51 local STORAGE=`$ADB shell mount | grep /system | cut -d ' ' -f1` 54 $ADB shell su -c "mount -o rw,remount $STORAGE /system" 63 $ADB shell $@ 65 $ADB shell su -c "$*" 84 $ADB shell rm "/data/local/tmp/$FILENAME" >&/dev/null 86 …$ADB pull "/data/local/tmp/$FILENAME" "$2" >&/dev/null && $ADB shell "rm \"/data/local/tmp/$FILENA… 157 SU_TEST_OUT=`$ADB shell su -c "echo foo" 2>&1 | sed 's/\r$//'` [all …]
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | bisect-skip-count | 61 result = subprocess.call(cmd, shell=args.shell, timeout=args.timeout) 84 result = subprocess.call(cmd, shell=args.shell, timeout=args.timeout)
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | symbols.rst | 18 - Running one or more shell scripts 24 or modified using the **defaults** shell command: 53 strings. Specifies a shell script that will get run in order to find the 54 dSYM. The shell script will be run given a single UUID value as the 55 shell command arguments and the shell command is expected to return a 84 The shell script will be invoked with a single UUID string value like 85 "23516BE4-29BE-350C-91C9-F36E7999F0F1". The shell script must respond with a 135 Below is a sample shell script output for a binary that contains two 237 making the results of your shell script will be very easy to create by 298 One possible implementation of a dSYM finding shell script is to have the [all …]
|
| /llvm-project-15.0.7/clang/utils/analyzer/ |
| H A D | entrypoint.py | 62 shell=True) 66 check_call("ninja install", shell=True) 71 return call("/scripts/SATest.py " + " ".join(args), shell=True)
|
| H A D | SATest.py | 145 elif args.shell: 153 shell=True)) 163 call("docker exec -it satest bash", shell=True) 189 shell=True) 197 call("docker stop satest", shell=True)
|
| /llvm-project-15.0.7/lldb/test/API/macosx/lc-note/firmware-corefile/ |
| H A D | TestFirmwareCorefiles.py | 29 …string " + verstr_corefile + " " + aout_exe + " 0xffffffffffffffff 0xffffffffffffffff", shell=True) 30 … " + verstr_corefile_addr + " " + aout_exe + (" 0x%x" % slide) + " 0xffffffffffffffff", shell=True) 92 …-spec " + binspec_corefile + " " + aout_exe + " 0xffffffffffffffff 0xffffffffffffffff", shell=True) 93 …" + binspec_corefile_addr + " " + aout_exe + (" 0x%x" % slide) + " 0xffffffffffffffff", shell=True) 94 …inspec_corefile_slideonly + " " + aout_exe + " 0xffffffffffffffff" + (" 0x%x" % slide), shell=True) 171 …" + binspec_corefile_addr + " " + aout_exe + (" 0x%x" % slide) + " 0xffffffffffffffff", shell=True) 199 ('/usr/bin/dwarfdump --uuid "%s"' % aout_exe), shell=True).decode("utf-8")
|
| /llvm-project-15.0.7/llvm/test/Other/ |
| H A D | can-execute.txt | 2 REQUIRES: shell 7 * For shell scripts, we also need to be able to read them. 11 shell script which always returns false, which is what it actually tries to
|
| /llvm-project-15.0.7/llvm/utils/gn/build/ |
| H A D | write_vcsrevision.py | 45 cwd=LLVM_DIR, shell=use_shell).decode().strip() 52 cwd=git_dir, shell=use_shell).decode().strip() 55 cwd=git_dir, shell=use_shell).decode().strip()
|
| /llvm-project-15.0.7/libc/benchmarks/ |
| H A D | README.md | 13 ```shell 20 ```shell 45 ```shell 74 ```shell 89 ```shell 97 ```shell
|
| /llvm-project-15.0.7/lldb/source/Host/windows/ |
| H A D | HostInfoWindows.cpp | 116 std::string shell; in GetDefaultShell() local 117 if (GetEnvironmentVar("ComSpec", shell)) in GetDefaultShell() 118 return FileSpec(shell); in GetDefaultShell()
|
| /llvm-project-15.0.7/clang/test/APINotes/ |
| H A D | yaml-roundtrip-2.test | 5 that we have a POSIX compatible diff when we have a shell. 6 REQUIRES: shell
|
| /llvm-project-15.0.7/libc/benchmarks/automemcpy/ |
| H A D | README.md | 13 ```shell 25 ```shell 51 ```shell 59 ```shell 80 ```shell
|
| /llvm-project-15.0.7/lldb/test/Shell/Host/ |
| H A D | TestCustomShell.test | 12 # ERROR: error: shell expansion failed 13 # CHECK-NOT: error: shell expansion failed
|
| /llvm-project-15.0.7/bolt/test/X86/ |
| H A D | jmp-optimization.test | 3 # This test has commands that rely on shell capabilities that won't execute 5 REQUIRES: shell
|
| H A D | double-jump.test | 3 # This test has commands that rely on shell capabilities that won't execute 5 REQUIRES: shell
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldb_pylint_helper.py | 121 ["lldb.exe", "-P"], shell=True) 125 ["lldb", "-P"], shell=True)
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_linux_test.cpp | 247 const char *shell = "/system/bin/sh"; in TEST() local 249 const char *shell = "/bin/sh"; in TEST() local 251 const char *argv[] = {shell, "-c", "echo -n 'hello'", (char *)NULL}; in TEST() 252 int pid = StartSubprocess(shell, argv, GetEnviron(), in TEST()
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-timeout/ |
| H A D | lit.cfg | 12 lit_config.note('Using internal shell') 15 lit_config.note('Using external shell')
|
| /llvm-project-15.0.7/lldb/test/API/macosx/lc-note/kern-ver-str/ |
| H A D | TestKernVerStrLCNOTE.py | 35 ('/usr/bin/dwarfdump --uuid "%s"' % self.test_exe), shell=True).decode("utf-8") 79 … retcode = call(self.create_corefile + " " + self.corefile + " " + self.test_exe, shell=True)
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBPlatform.h | 54 SBPlatformShellCommand(const char *shell, const char *shell_command); 67 void SetShell(const char *shell);
|
| /llvm-project-15.0.7/clang/tools/clang-format/ |
| H A D | clang-format-bbedit.applescript | 8 …return do shell script "python -c \"import urllib, urlparse, sys; print urllib.unquote(urlparse.ur… 18 set newContents to do shell script "/path/to/clang-format -offset=" & selectionOffset & " -length="…
|
| /llvm-project-15.0.7/flang/tools/f18/ |
| H A D | CMakeLists.txt | 51 # This flang shell script will only work in a POSIX shell.
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/make/ |
| H A D | Makefile.rules | 36 SRCDIR := $(shell dirname $(firstword $(MAKEFILE_LIST))) 37 BUILDDIR := $(shell pwd) 39 THIS_FILE_DIR := $(shell dirname $(MAKEFILE_RULES)) 57 HOST_OS := $(shell uname -s) 132 SDKROOT := $(shell xcrun --sdk macosx --show-sdk-path)
|