Home
last modified time | relevance | path

Searched +full:- +full:- +full:workdir (Results 1 – 25 of 220) sorted by relevance

123456789

/third_party/nghttp2/
DDockerfile.android4 # $ sudo docker build -t nghttp2-android - < Dockerfile.android
11 # $ sudo docker run -v /path/to/dest:/out nghttp2-android cp /root/build/nghttp2/src/nghttpx /out
14 # Only use standalone-toolchain for reduce size
23 WORKDIR /root
24 RUN apt-get update && \
25 apt-get install -y unzip make binutils autoconf \
26 automake autotools-dev libtool pkg-config git \
27 curl dpkg-dev libxml2-dev genisoimage libc6-i386 \
29 rm -rf /var/cache/apk/*
32 RUN curl -L -O https://dl.google.com/android/repository/android-ndk-$NDK_VERSION-linux-x86_64.zip &…
[all …]
/third_party/ffmpeg/tests/
Dfate.sh10 test -r "$config" || die "usage: fate.sh <config>"
12 workdir=$(cd $(dirname $config) && pwd)
18 test -n "$slot" || die "slot not specified"
19 test -n "$repo" || die "repo not specified"
20 test -d "$samples" || die "samples location not specified"
26 (set -C; exec >$lock) 2>/dev/null || return
33 git:*) git clone --quiet --branch "$branch" "$repo" "$src" ;;
40 git:*) git fetch --quiet --force && git reset --quiet --hard "origin/$branch" ;;
47 --prefix="${inst}" \
48 --samples="${samples}" \
[all …]
/third_party/ltp/testcases/kernel/syscalls/creat/
Dcreat09.c1 // SPDX-License-Identifier: GPL-2.0-or-later
8 * CVE-2018-13405
17 * Author: Linus Torvalds <torvalds@linux-foundation.org>
18 * Date: Tue Jul 3 17:10:19 2018 -0700
20 * Fix up non-directory creation in SGID directories
28 * Date: Fri Jan 22 16:48:18 2021 -0800
30 * xfs: fix up non-directory creation in SGID directories
43 #define WORKDIR MNTPOINT "/testdir" macro
44 #define CREAT_FILE WORKDIR "/creat.tmp"
45 #define OPEN_FILE WORKDIR "/open.tmp"
[all …]
/third_party/openh264/build/
DDockerfile3 # build the docker image with: sudo docker build -t openh264tools - < Dockerfile
4 # get the result with: sudo docker run -t -i -v /tmp/openH264:/build openh264tools /bin/cp libopenh…
10 RUN apt-get update
11 RUN apt-get upgrade -y
12 RUN apt-get install -y bison flex g++ gcc git libgmp3-dev libmpc-dev libmpfr-dev libz-dev make wget
14 WORKDIR /tmp
15 RUN wget http://ftp.gnu.org/gnu/gcc/gcc-4.9.2/gcc-4.9.2.tar.gz
16 RUN tar xvfz gcc-4.9.2.tar.gz
17 WORKDIR /tmp/gcc-4.9.2/
19 WORKDIR /tmp/gcc-4.9.2/build
[all …]
/third_party/node/deps/npm/test/tap/
Dinstall-package-json-order.js5 var npm = require.resolve('../../bin/npm-cli.js')
7 const common = require('../common-tap.js')
9 var workdir = path.join(pkg, 'workdir') variable
15 var installedPackage = path.resolve(workdir,
16 'node_modules/install-package-json-order/package.json')
19 mkdirp.sync(workdir)
22 'name': 'install-package-json-order',
27 fs.writeFileSync(path.resolve(workdir, 'package.json'), JSON.stringify({
28 'name': 'install-package-json-order-work',
33 var child = spawn(node, [npm, 'install', pkg], { cwd: workdir })
Dretry-on-stale-cache.js3 var mr = require('npm-registry-mock')
5 var common = require('../common-tap')
10 var workdir = common.pkg variable
12 var modulesdir = path.join(workdir, 'modules')
13 var oldModule = path.join(modulesdir, 'good-night-0.1.0.tgz')
14 var newModule = path.join(modulesdir, 'good-night-1.0.0.tgz')
17 '--cache', cachedir,
18 '--prefix', workdir,
19 '--registry', common.registry
24 'good-night-0.1.0.tgz': File(Buffer.from(
[all …]
/third_party/ltp/testcases/kernel/syscalls/chdir/
Dchdir01.c1 // SPDX-License-Identifier: GPL-2.0-or-later
30 static char *workdir; variable
38 {FILE_NAME, -1, ENOTDIR, -1, ENOTDIR},
39 {BLOCKED_NAME, 0, 0, -1, EACCES},
44 {"missing", -1, ENOENT, -1, ENOENT},
45 {LINK_NAME1, -1, ELOOP, -1, ELOOP},
56 SAFE_MOUNT(tst_device->dev, MNTPOINT, tst_device->fs_type, 0, NULL); in setup()
59 workdir = SAFE_MALLOC(strlen(cwd) + strlen(MNTPOINT) + 2); in setup()
60 sprintf(workdir, "%s/%s", cwd, MNTPOINT); in setup()
62 SAFE_CHDIR(workdir); in setup()
[all …]
/third_party/flutter/skia/infra/bots/assets/gcloud_linux/
Dcreate_and_upload.py5 # 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])
/third_party/libdrm/intel/
Dmeson.build1 # Copyright © 2017-2018 Intel Corporation
66 'gen4-3d.batch',
67 find_program('tests/gen4-3d.batch.sh'),
68 workdir : meson.current_build_dir(),
71 'gen45-3d.batch',
72 find_program('tests/gm45-3d.batch.sh'),
73 workdir : meson.current_build_dir(),
76 'gen5-3d.batch',
77 find_program('tests/gen5-3d.batch.sh'),
78 workdir : meson.current_build_dir(),
[all …]
/third_party/typescript/tests/cases/docker/vscode/
DDockerfile3 RUN apt-get update
4 RUN apt-get install libsecret-1-dev libx11-dev libxkbfile-dev -y
5 RUN npm i -g yarn --force
7 WORKDIR /vscode
9 COPY --from=typescript/typescript /typescript/typescript-*.tgz /typescript.tgz
10 WORKDIR /vscode/build
12 WORKDIR /vscode/extensions
15 WORKDIR /vscode
/third_party/python/Mac/BuildScript/
Dbuild-installer.py6 - support universal2 variant with arm64 and x86_64 archs
7 - enable clang optimizations when building on 10.15+
10 - 2.7 end-of-life issues:
11 - Python 3 installs now update the Current version link
13 - fully support running under Python 3 as well as 2.7
14 - support building on newer macOS systems with SIP
15 - fully support building on macOS 10.9+
16 - support 10.6+ on best effort
17 - support bypassing docs build by supplying a prebuilt
18 docs html tarball in the third-party source library,
[all …]
/third_party/typescript/tests/cases/docker/azure-sdk/
DDockerfile2 RUN npm install -g @microsoft/rush
3 RUN git clone https://github.com/Azure/azure-sdk-for-js.git /azure-sdk
4 WORKDIR /azure-sdk
7 WORKDIR /azure-sdk/sdk/core/core-http
9 RUN rush add -p "typescript@3.5.1" --dev -m
11 WORKDIR /azure-sdk/common/temp/node_modules/.pnpm/registry.npmjs.org/typescript/3.5.1/node_modules
12 RUN rm -rf typescript
13 COPY --from=typescript/typescript /typescript/typescript-*.tgz /typescript.tgz
15 RUN tar -xzvf /typescript.tgz -C /typescript
16 RUN ln -s /typescript/package ./typescript
[all …]
/third_party/ejdb/docker/testbed/
Djenkins-agent5 # Copyright (c) 2015-2020, CloudBees, Inc.
25 # Usage jenkins-agent.sh [options] -url http://jenkins [SECRET] [AGENT_NAME]
31 # * JENKINS_AGENT_WORKDIR : agent work directory, if not set by optional parameter -workDir
39 if [ $# -eq 1 ]; then
46 # if -tunnel is not provided, try env vars
48 *"-tunnel "*) ;;
50 if [ ! -z "$JENKINS_TUNNEL" ]; then
51 TUNNEL="-tunnel $JENKINS_TUNNEL"
55 # if -workDir is not provided, try env vars
56 if [ ! -z "$JENKINS_AGENT_WORKDIR" ]; then
[all …]
/third_party/skia/infra/bots/recipe_modules/flavor/
Ddefault.py2 # Use of this source code is governed by a BSD-style license that can be
33 # FlavorUtils objects can do recipe module-like things, like run steps or
34 # access module-level resources.
47 lotties_dir=self.m.path['start_dir'].join('lottie-samples'),
108 """Run device-specific installation steps."""
112 """Run any device-specific cleanup steps."""
130 workdir = self.m.vars.workdir
131 clang_linux = str(workdir.join('clang_linux'))
137 dri_path = workdir.join('mesa_intel_driver_linux')
143 env['VULKAN_SDK'] = str(workdir.join('linux_vulkan_sdk'))
[all …]
/third_party/flatbuffers/tests/docker/languages/
DDockerfile.testing.csharp.mono_5_182 WORKDIR /code
5 WORKDIR /code/tests
6 RUN mono --version
7 WORKDIR /code/tests/FlatBuffers.Test
DDockerfile.testing.swift_5_22 WORKDIR /code
5 WORKDIR /code/tests
6 RUN swift --version
7 WORKDIR /code/tests/FlatBuffers.Test.Swift
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Dtest.dart2 // Use of this source code is governed by a BSD-style license that can be
35 ..addMultiOption('plain-name',
36 help: 'A plain-text substring of the names of tests to run.',
40 ..addFlag('start-paused',
48 ..addFlag('disable-service-auth-codes',
60 ..addFlag('merge-coverage',
71 ..addOption('coverage-path',
81 ..addFlag('update-goldens',
88 defaultsTo: math.max<int>(1, platform.numberOfProcessors - 2).toString(),
92 ..addFlag('test-assets',
[all …]
/third_party/typescript/tests/cases/docker/chrome-devtools-frontend-next/
DDockerfile4 WORKDIR /
6 WORKDIR devtools
7 RUN fetch devtools-frontend
8 WORKDIR devtools-frontend
10 COPY --from=typescript/typescript /typescript/typescript-*.tgz /typescript.tgz
12 RUN tar -xzvf /typescript.tgz -C /typescript
13 RUN ln -s /typescript/package ./node_modules/typescript
14 # We don't want to show the ordering of which tasks ran in Ninja, as that is non-deterministic.
17 CMD ["autoninja", "-C", "out/Default", ">", "error.log", "||", "tail", "-n", "+$(sed", "-n", "'/FAI…
/third_party/vk-gl-cts/scripts/
Drun_internal_tests.py1 # -*- 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 …]
/third_party/skia/infra/bots/recipe_modules/vars/
Dapi.py2 # Use of this source code is governed by a BSD-style license that can be
22 # were put into the task workdir.
23 if self.m.path.c.base_paths['start_dir'][-1] == 'k': # pragma: nocover
25 self.m.path.c.base_paths['start_dir'][:-1])
30 self.workdir = self.m.path['start_dir']
33 self.build_dir = self.workdir.join('build')
41 self.cache_dir = self.workdir.join('cache')
43 self.swarming_out_dir = self.workdir.join(
104 stdout=self.m.raw_io.output()).stdout.decode('utf-8')
116 stdout=self.m.raw_io.output()).stdout.decode('utf-8')
/third_party/typescript/tests/cases/docker/office-ui-fabric/
DDockerfile1 # Lock to node 12 because the codebase throws hundreds of `Warning: Accessing non-existent property…
6 ADD https://api.github.com/repos/OfficeDev/office-ui-fabric-react/git/ref/heads/master version.json
7 RUN git clone https://github.com/OfficeDev/office-ui-fabric-react.git /office-ui-fabric-react
8 WORKDIR /office-ui-fabric-react
10 WORKDIR /
11 COPY --from=typescript/typescript /typescript/typescript-*.tgz typescript.tgz
12 WORKDIR /office-ui-fabric-react
15 RUN npx lerna exec --stream --concurrency 1 -- npm install /typescript.tgz --exact --ignore-scripts
18 RUN npx lerna exec --stream --concurrency 1 --bail=false -- yarn run just scss
20 CMD [ "lerna", "exec", "--stream", "--concurrency", "1", "--loglevel", "error", "--bail=false", "--
/third_party/grpc/templates/src/php/docker/grpc-src/
DDockerfile.template2 --- |
9 # http://www.apache.org/licenses/LICENSE-2.0
17 …FROM php:${settings.php_version.php_current_version()}-${settings.php_version.php_debian_version()}
19 RUN apt-get -qq update && apt-get -qq install -y ${'\\'}
20 autoconf automake git libtool pkg-config ${'\\'}
21 valgrind wget zlib1g-dev
23 ARG MAKEFLAGS=-j8
26 WORKDIR /tmp
30 WORKDIR /github/grpc
37 WORKDIR /github/grpc/src/php/ext/grpc
[all …]
/third_party/grpc/src/php/docker/grpc-src/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
15 FROM php:7.2-stretch
17 RUN apt-get -qq update && apt-get -qq install -y \
18 autoconf automake git libtool pkg-config \
19 valgrind wget zlib1g-dev
21 ARG MAKEFLAGS=-j8
24 WORKDIR /tmp
26 RUN wget https://phar.phpunit.de/phpunit-8.5.13.phar && \
27 mv phpunit-8.5.13.phar /usr/local/bin/phpunit && \
31 WORKDIR /github/grpc
[all …]
/third_party/boost/tools/build/test/
DTestCmd.py11 in-line data, here-documents), allowing tests to be completely self-contained.
43 # Copyright 2002-2003 Vladimir Prus.
44 # Copyright 2002-2003 Dave Abrahams.
88 if file[-10:] == "TestCmd.py":
197 return MatchError("Mismatch at line %d\n- %s\n+ %s\n" %
200 return MatchError("Missing lines at line %d\n- %s" %
201 (len(lines), "\n- ".join(matches[len(lines):])))
221 return MatchError("Mismatch at line %d\n- %s\n+ %s\n" %
224 return MatchError("Missing lines at line %d\n- %s" %
225 (len(lines), "\n- ".join(res[len(lines):])))
[all …]
/third_party/skia/third_party/externals/harfbuzz/test/shape/
Dmeson.build2 subdir('data/in-house') # in_house_tests
4 subdir('data/text-rendering-tests') # text_rendering_tests
6 shaping_run_tests_py = find_program('run-tests.py')
17 meson.current_source_dir() / 'data' / 'in-house' / 'tests' / file_name,
20 workdir: meson.current_build_dir() / '..' / '..',
21 suite: ['shaping', 'in-house'],
34 workdir: meson.current_build_dir() / '..' / '..',
45 meson.current_source_dir() / 'data' / 'text-rendering-tests' / 'tests' / file_name,
48 workdir: meson.current_build_dir() / '..' / '..',
49 suite: ['shaping', 'text-rendering-tests'],

123456789