/external/rootdev/ |
D | rootdev_test.sh | 3 # Use of this source code is governed by a BSD-style license that can be 9 set -u 34 WORKDIR= 36 if [ -n "$WORKDIR" ]; then 37 rm -rf "$WORKDIR" 39 trap - EXIT 43 WORKDIR=$(mktemp -d rootdev_test.XXXXXXX) 44 if [ ! -d "$WORKDIR" ]; then 56 if [ $ret -eq 0 ]; then 66 if [ $? -ne 0 ]; then [all …]
|
/external/golang-protobuf/protoc-gen-go/ |
D | golden_test.go | 19 // Set --regenerate to regenerate the golden files. 23 // tests and instead act as protoc-gen-go. This allows the test binary to 33 workdir, err := ioutil.TempDir("", "proto-test") 37 defer os.RemoveAll(workdir) 59 // Compile each package, using this binary as protoc-gen-go. 61 args := []string{"-Itestdata", "--go_out=plugins=grpc,paths=source_relative:" + workdir} 67 filepath.Walk(workdir, func(genPath string, info os.FileInfo, _ error) error { 74 relPath, err := filepath.Rel(workdir, genPath) 76 t.Errorf("filepath.Rel(%q, %q): %v", workdir, genPath, err) 80 t.Errorf("generated file %q is not relative to %q", genPath, workdir) [all …]
|
/external/syzkaller/vm/ |
D | vm.go | 8 // and higher-level interface. 34 workdir string member 39 workdir string member 57 Workdir: cfg.Workdir, 70 workdir: env.Workdir, 82 workdir, err := osutil.ProcessTempDir(pool.workdir) 86 impl, err := pool.impl.Create(workdir, index) 88 os.RemoveAll(workdir) 93 workdir: workdir, 106 func (inst *Instance) Run(timeout time.Duration, stop <-chan bool, command string) ( [all …]
|
/external/python/cpython2/Mac/BuildScript/ |
D | build-installer.py | 6 - support Intel 64-bit-only () and 32-bit-only installer builds 7 - build and link with private Tcl/Tk 8.6 for 10.9+ builds 8 - deprecate use of explicit SDK (--sdk-path=) since all but the oldest 13 supported with build-installer. 14 - use generic "gcc" as compiler (CC env var) rather than "gcc-4.2" 21 Sphinx, build-installer.py should also be converted to use python3! 23 For 10.9 or greater deployment targets, build-installer builds and links 25 apply. Otherwise, build-installer requires an installed third-party version 73 QUOTED_VALUE='quotes' -> str('quotes') 74 UNQUOTED_VALUE=noquotes -> str('noquotes') [all …]
|
/external/python/cpython3/Mac/BuildScript/ |
D | build-installer.py | 6 - support Intel 64-bit-only () and 32-bit-only installer builds 7 - build and use internal Tcl/Tk 8.6 for 10.6+ builds 8 - deprecate use of explicit SDK (--sdk-path=) since all but the oldest 13 supported with build-installer. 14 - use generic "gcc" as compiler (CC env var) rather than "gcc-4.2" 17 - support SDKROOT and DEVELOPER_DIR xcrun env variables 18 - test with 10.5 and 10.4 and determine support status 25 Sphinx, build-installer.py should also be converted to use python3! 28 build-installer builds and links with its own copy of Tcl/Tk 8.6. 29 Otherwise, it requires an installed third-party version of [all …]
|
/external/autotest/venv/lucifer/ |
D | jobx.py | 2 # Use of this source code is governed by a BSD-style license that can be 102 def control_file_path(workdir): argument 115 So pick an arbitrary filename to plop into the workdir. autoserv 118 return os.path.join(workdir, 'lucifer', 'control_attach') 121 def prepare_control_file(job, workdir): argument 123 with open(control_file_path(workdir), 'w') as f: 127 def prepare_keyvals_files(job, workdir): argument 132 results.write_keyvals(workdir, keyvals) 137 workdir, hqe.host.hostname, _host_keyvals(hqe.host)) 140 def write_aborted_keyvals_and_status(job, workdir): argument [all …]
|
/external/skia/infra/bots/assets/gcloud_linux/ |
D | create_and_upload.py | 5 # Use of this source code is governed by a BSD-style license that can be 23 parser.add_argument('--gsutil') 28 workdir = os.path.join(cwd, "workdir") 33 os.mkdir(workdir) 34 subprocess.check_call(['python', create_script, '-t', workdir]) 35 cmd = ['python', upload_script, '-t', workdir] 37 cmd.extend(['--gsutil', args.gsutil])
|
/external/skqp/infra/bots/assets/gcloud_linux/ |
D | create_and_upload.py | 5 # Use of this source code is governed by a BSD-style license that can be 23 parser.add_argument('--gsutil') 28 workdir = os.path.join(cwd, "workdir") 33 os.mkdir(workdir) 34 subprocess.check_call(['python', create_script, '-t', workdir]) 35 cmd = ['python', upload_script, '-t', workdir] 37 cmd.extend(['--gsutil', args.gsutil])
|
/external/libdrm/intel/ |
D | meson.build | 1 # Copyright © 2017-2018 Intel Corporation 66 'gen4-3d.batch', 68 args : files('tests/gen4-3d.batch.sh'), 69 workdir : meson.current_build_dir(), 72 'gen45-3d.batch', 74 args : files('tests/gm45-3d.batch.sh'), 75 workdir : meson.current_build_dir(), 78 'gen5-3d.batch', 80 args : files('tests/gen5-3d.batch.sh'), 81 workdir : meson.current_build_dir(), [all …]
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/util/ |
D | BCELifierTestCase.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 50 testClassOnPath("target/test-classes/Java8Example.class"); in testJavapCompare() 55 final String initial = exec(null, "javap", "-p", "-c", javaClass); in testClassOnPath() 57 final File workDir = new File("target"); in testClassOnPath() local 61 final File outfile = new File(workDir, infile.getName().replace(".class", "Creator.java")); in testClassOnPath() 66 exec(workDir, "javac", "-cp", "classes", outfile.getName()); in testClassOnPath() 67 …exec(workDir, "java", "-cp", "." + File.pathSeparator + "classes", outfile.getName().replace(".jav… in testClassOnPath() 68 final String output = exec(workDir, "javap", "-p", "-c", infile.getName()); in testClassOnPath() 80 private String exec(final File workDir, final String... args) throws Exception { in exec() argument 83 pb.directory(workDir); in exec() [all …]
|
/external/toolchain-utils/deprecated/ |
D | run_benchmarks.py | 15 - Read run script rules from bench.mk perflab-bin, copy benchmark to 20 - Re-image host with image in perflab-bin 21 - Call run_tests to run startup test, gather results. 22 - Restore host back to what it was. 25 - Call build_chromebrowser to build image with new browser 26 - Copy image to perflab-bin 44 # pylint: disable=anomalous-backslash-in-string 100 def RunCpuBenchmark(chromeos_root, bench, workdir, machine): argument 106 workdir: directory containing benchmark directory 114 benchdir = '%s/%s' % (workdir, benchname) [all …]
|
D | build_benchmarks.py | 17 - Execute bench.py script within chroot to build benchmark 18 - Copy build results to perflab-bin 21 - Call build_chromeos to build image. 22 - Copy image to perflab-bin 25 - Call build_chromebrowser to build image with new browser 26 - Copy image to perflab-bin 53 '--toolchain=/usr/bin --action=clean;') 57 '--toolchain=/usr/bin --add_cflags=%s --add_ldflags=%s ' 58 '--makeopts=%s --action=build') 86 """Create links in perflab-bin/destdir/* to sourcedir/*, instead of copies [all …]
|
/external/conscrypt/release/ |
D | Dockerfile | 3 RUN yum install -y git \ 10 curl-devel \ 14 glibc-static.i686 \ 15 glibc-devel \ 16 glibc-devel.i686 18 RUN yum update -y nss 21 RUN wget -q --no-cookies --no-check-certificate \ 22 …--header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie… 23 …"http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-… 24 -O - | tar xz -C /var/local [all …]
|
/external/lzma/CPP/7zip/UI/Common/ |
D | WorkDir.cpp | 1 // WorkDir.cpp 10 #include "WorkDir.h" 71 FString workDir = GetWorkDir(workDirInfo, originalPath, namePart); in CreateTempFile() local 72 CreateComplexDir(workDir); in CreateTempFile() 76 if (!_tempFile.Create(workDir + namePart, &_outStreamSpec->File)) in CreateTempFile()
|
/external/deqp/scripts/ |
D | run_internal_tests.py | 1 # -*- coding: utf-8 -*- 3 #------------------------------------------------------------------------- 5 # -------------------------------------- 13 # http://www.apache.org/licenses/LICENSE-2.0 21 #------------------------------------------------------------------------- 31 exit(-1) 36 def execute (args, workDir = None): argument 38 if workDir != None: 39 os.chdir(workDir) 46 … testBinaryName, executor = 'executor', execserver = 'execserver', junitTool = 'testlog-to-junit'): [all …]
|
/external/flatbuffers/tests/docker/languages/ |
D | Dockerfile.testing.csharp.mono_5_18 | 2 WORKDIR /code 5 WORKDIR /code/tests 6 RUN mono --version 7 WORKDIR /code/tests/FlatBuffers.Test
|
/external/conscrypt/openjdk/src/main/java/org/conscrypt/ |
D | NativeLibraryLoader.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 24 * http://www.apache.org/licenses/LICENSE-2.0 57 private static final String WORK_DIR_PROPERTY_NAME = "org.conscrypt.native.workdir"; 60 private static final String NATIVE_RESOURCE_HOME = "META-INF/native/"; 61 private static final File WORKDIR; field in NativeLibraryLoader 65 File workdir = getWorkDir(); 66 if (workdir == null) { 67 workdir = HostProperties.getTempDir(); 69 WORKDIR = workdir; 70 log("-D{0}: {1}", WORK_DIR_PROPERTY_NAME, WORKDIR); [all …]
|
/external/conscrypt/repackaged/openjdk/src/main/java/com/android/org/conscrypt/ |
D | NativeLibraryLoader.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 25 * http://www.apache.org/licenses/LICENSE-2.0 58 private static final String WORK_DIR_PROPERTY_NAME = "com.android.org.conscrypt.native.workdir"; 61 private static final String NATIVE_RESOURCE_HOME = "META-INF/native/"; 62 private static final File WORKDIR; field in NativeLibraryLoader 66 File workdir = getWorkDir(); 67 if (workdir == null) { 68 workdir = HostProperties.getTempDir(); 70 WORKDIR = workdir; 71 log("-D{0}: {1}", WORK_DIR_PROPERTY_NAME, WORKDIR); [all …]
|
/external/v8/tools/node/ |
D | test_backport_node.py | 3 # Use of this source code is governed by a BSD-style license that can be 23 subprocess.check_call(['git', 'commit', '-m', 'Initial'], cwd=path) 27 self.workdir = tempfile.mkdtemp(prefix='tmp_test_node_') 30 shutil.rmtree(self.workdir) 33 v8_cwd = os.path.join(self.workdir, 'v8') 34 node_cwd = os.path.join(self.workdir, 'node') 48 subprocess.check_call(['git', 'commit', '-m', "Title\n\nBody"], cwd=v8_cwd) 49 commit = subprocess.check_output(['git', 'rev-parse', 'HEAD'], cwd=v8_cwd).strip() 52 backport_node.Main([v8_cwd, node_cwd, commit, "--no-review"]) 55 message = subprocess.check_output(['git', 'log', '-1', '--format=%B'], cwd=node_cwd) [all …]
|
/external/syzkaller/docs/ |
D | configuration.md | 3 The operation of the syzkaller `syz-manager` process is governed by a configuration file, passed at 4 invocation time with the `-config` option. This configuration can be based on the 6 following keys in its top-level object: 8 - `http`: URL that will display information about the running `syz-manager` process. 9 …- `email_addrs`: Optional list of email addresses to receive notifications when bugs are encounter… 11 - `workdir`: Location of a working directory for the `syz-manager` process. Outputs here include: 12 - `<workdir>/crashes/*`: crash output files (see [Crash Reports](#crash-reports)) 13 - `<workdir>/corpus.db`: corpus with interesting programs 14 - `<workdir>/instance-x`: per VM instance temporary files 15 - `syzkaller`: Location of the `syzkaller` checkout, `syz-manager` will look [all …]
|
/external/syzkaller/docs/linux/ |
D | setup_linux-host_isolated.md | 60 wget https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz 61 tar -xf go1.8.1.linux-amd64.tar.gz 73 go get -u -d github.com/google/syzkaller/... 85 "workdir": "/syzkaller/workdir", 86 "kernel_obj": "/linux-next", 99 - `target` (target OS/arch) 100 - `workdir` (path to the workdir) 101 - `kernel_obj` (path to kernel build directory) 102 - `sshkey` You can setup an sshkey (optional) 103 - `vm.targets` List of hosts to use for fufzzing [all …]
|
/external/llvm/bindings/go/ |
D | build.sh | 1 #!/bin/sh -xe 5 workdir=$gollvmdir/workdir 7 llvm_builddir=$workdir/llvm_build 9 mkdir -p $llvm_builddir 12 llvm_config="$llvm_builddir/bin/llvm-config" 13 llvm_go="$llvm_builddir/bin/llvm-go" 15 if test -n "`which ninja`" ; then 18 (cd $llvm_builddir && cmake -G Ninja $cmake_flags) 19 ninja -C $llvm_builddir llvm-config llvm-go 20 llvm_components="$($llvm_go print-components)" [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/ |
D | build.sh | 1 #!/bin/sh -xe 5 workdir=$gollvmdir/workdir 7 llvm_builddir=$workdir/llvm_build 9 mkdir -p $llvm_builddir 12 llvm_config="$llvm_builddir/bin/llvm-config" 13 llvm_go="$llvm_builddir/bin/llvm-go" 15 if test -n "`which ninja`" ; then 18 (cd $llvm_builddir && cmake -G Ninja $cmake_flags) 19 ninja -C $llvm_builddir llvm-config llvm-go 20 llvm_components="$($llvm_go print-components)" [all …]
|
/external/syzkaller/tools/ |
D | demo_setup.sh | 12 # https://www.linux-kvm.org/page/FAQ 13 # If everything goes successfully, the script will start syz-manager 17 # syz-manager web UI contains a summary of crashes: 19 # You can always abort syz-manager with Ctrl+C and start it again by running 22 set -eux 28 export NVM=$(((`free -g | grep "Mem:" | awk '{print $2}'`-1)/3)) 30 sudo apt-get install -y -q make git curl bison flex bc libssl-dev gcc g++ qemu-system-x86 32 curl https://dl.google.com/go/go1.10.1.linux-amd64.tar.gz | tar -xz 33 curl https://storage.googleapis.com/syzkaller/gcc-7.tar.gz | tar -xz 34 curl https://storage.googleapis.com/syzkaller/corpus.db.tar.gz | tar -xz [all …]
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | Dockerfile | 11 RUN apt-get update && \ 12 apt-get upgrade -y && \ 13 apt-get install -y git-core build-essential wget 15 RUN apt-get install -y --no-install-recommends \ 16 autotools-dev libtool pkg-config zlib1g-dev \ 17 libcunit1-dev libssl-dev libxml2-dev libevent-dev \ 21 RUN apt-get install -y --no-install-recommends make binutils \ 22 autoconf automake autotools-dev \ 23 libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev \ 24 libev-dev libevent-dev libjansson-dev libjemalloc-dev \ [all …]
|