Home
last modified time | relevance | path

Searched refs:RUN (Results 1 – 25 of 1321) sorted by relevance

12345678910>>...53

/third_party/openh264/build/
DDockerfile10 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
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
18 RUN mkdir build
20 RUN ../configure --disable-checking --enable-languages=c,c++ --enable-multiarch --enable-shared --e…
21 RUN make -j 8
22 RUN make install
25 RUN wget http://www.nasm.us/pub/nasm/releasebuilds/2.11.06/nasm-2.11.06.tar.gz
[all …]
/third_party/protobuf/kokoro/linux/dockerfile/test/php_32bit/
DDockerfile5 RUN apt-get update && apt-get install -y \
29 RUN apt-get clean && apt-get update && apt-get install -y --force-yes \
41 RUN wget http://ftp.gnu.org/gnu/bison/bison-2.6.4.tar.gz -O /var/local/bison-2.6.4.tar.gz
42 RUN cd /var/local \
50 RUN curl -sS https://getcomposer.org/installer | php
51 RUN mv composer.phar /usr/local/bin/composer
54 RUN git clone https://github.com/php/php-src
57 RUN cd php-src \
60 RUN cd php-src \
69 RUN cd php-src \
[all …]
/third_party/json/tests/thirdparty/Fuzzer/test/
Dmerge.test3 RUN: rm -rf %tmp/T1 %tmp/T2
4 RUN: mkdir -p %tmp/T1 %tmp/T2
5 RUN: echo F..... > %tmp/T1/1
6 RUN: echo .U.... > %tmp/T1/2
7 RUN: echo ..Z... > %tmp/T1/3
10 RUN: LLVMFuzzer-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-pr…
14 RUN: echo ...Z.. > %tmp/T2/1
15 RUN: echo ....E. > %tmp/T2/2
16 RUN: echo .....R > %tmp/T2/3
17 RUN: echo F..... > %tmp/T2/a
[all …]
Dfuzzer-jobs.test1 RUN: rm -rf %tmp
2 RUN: mkdir %tmp && cd %tmp
4 RUN: rm -rf FuzzerJobsTestCORPUS
5 RUN: mkdir FuzzerJobsTestCORPUS
6 RUN: rm -f fuzz-{0,1}.log
9 RUN: LLVMFuzzer-EmptyTest -max_total_time=4 -jobs=2 -workers=2 FuzzerJobsTestCORPUS > %t-fuzzer-job…
12 RUN: sleep 2
15 RUN: ls fuzz-0.log
16 RUN: ls fuzz-1.log
21 RUN: while kill -0 ${FUZZER_PID}; do : ; done
[all …]
Dfuzzer.test4 RUN: LLVMFuzzer-SimpleTest 2>&1 | FileCheck %s
7 RUN: LLVMFuzzer-SimpleTest -only_ascii=1 2>&1
9 RUN: LLVMFuzzer-SimpleCmpTest -max_total_time=1 -use_cmp=0 2>&1 | FileCheck %s --check-prefix=MaxTo…
12 RUN: not LLVMFuzzer-NullDerefTest 2>&1 | FileCheck %s --check-prefix=NullDerefTest
13 RUN: not LLVMFuzzer-NullDerefTest -close_fd_mask=3 2>&1 | FileCheck %s --check-prefix=NullDerefTest
16 RUN: not LLVMFuzzer-NullDerefTest -artifact_prefix=ZZZ 2>&1 | FileCheck %s --check-prefix=NullDere…
18 RUN: not LLVMFuzzer-NullDerefTest -artifact_prefix=ZZZ -exact_artifact_path=FOOBAR 2>&1 | FileChec…
21 RUN: not LLVMFuzzer-NullDerefOnEmptyTest -print_final_stats=1 2>&1 | FileCheck %s --check-prefix=NU…
26 RUN: not LLVMFuzzer-CounterTest -max_len=6 -seed=1 -timeout=15 2>&1 | FileCheck %s --check-prefix=…
37 RUN: not LLVMFuzzer-UninstrumentedTest-NoCoverage 2>&1 | FileCheck %s --check-prefix=NO_COVERAGE
[all …]
Dafl-driver-extra-stats.test2 RUN: unset AFL_DRIVER_EXTRA_STATS_FILENAME
3 RUN: AFLDriverTest
6 RUN: ASAN_OPTIONS= AFL_DRIVER_EXTRA_STATS_FILENAME=%T not --crash AFLDriverTest
13 RUN: rm -f %t
14 RUN: AFL_DRIVER_EXTRA_STATS_FILENAME=%t AFLDriverTest
15 RUN: [[ $(grep "peak_rss_mb\|slowest_unit_time_sec" %t | wc -l) -eq 2 ]]
18 RUN: printf "peak_rss_mb : 0\nslowest_unit_time_sec: 0\n" > %t
19 RUN: AFL_DRIVER_EXTRA_STATS_FILENAME=%t AFLDriverTest
21 RUN: [[ $(grep "peak_rss_mb\|slowest_unit_time_sec" %t | wc -l) -eq 2 ]]
26 RUN: printf "peak_rss_mb : 9999\nslowest_unit_time_sec: 9999\n" > %t
[all …]
Dfuzzer-dirs.test1 RUN: rm -rf %t/SUB1
2 RUN: mkdir -p %t/SUB1/SUB2/SUB3
3 RUN: echo a > %t/SUB1/a
4 RUN: echo b > %t/SUB1/SUB2/b
5 RUN: echo c > %t/SUB1/SUB2/SUB3/c
6 RUN: LLVMFuzzer-SimpleTest %t/SUB1 -runs=0 2>&1 | FileCheck %s --check-prefix=SUBDIRS
8 RUN: echo zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz…
9 RUN: LLVMFuzzer-SimpleTest %t/SUB1 -runs=0 2>&1 | FileCheck %s --check-prefix=LONG
11 RUN: rm -rf %t/SUB1
13 RUN: not LLVMFuzzer-SimpleTest NONEXISTENT_DIR 2>&1 | FileCheck %s --check-prefix=NONEXISTENT_DIR
Dfuzzer-leak.test2 RUN: not LLVMFuzzer-LeakTest -runs=100000 -detect_leaks=1 2>&1 | FileCheck %s --check-prefix=LEAK_D…
10 RUN: not LLVMFuzzer-LeakTest -runs=0 -detect_leaks=1 %S 2>&1 | FileCheck %s --check-prefix=LEAK_IN_…
14 RUN: not LLVMFuzzer-LeakTest -runs=100000000 %S/hi.txt 2>&1 | FileCheck %s --check-prefix=MULTI_RUN…
18 RUN: not LLVMFuzzer-LeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=LEAK_A…
19 RUN: not LLVMFuzzer-LeakTest -runs=100000 2>&1 | FileCheck %s --check-prefix=LEAK_D…
20 RUN: not LLVMFuzzer-ThreadedLeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefi…
21 RUN: not LLVMFuzzer-ThreadedLeakTest -runs=100000 2>&1 | FileCheck %s --check-prefi…
25 RUN: not LLVMFuzzer-LeakTest -runs=100000 -max_len=1 2>&1 | FileCheck %s --check-prefix=MAX_LEN_1
28 RUN: not LLVMFuzzer-LeakTimeoutTest -timeout=1 2>&1 | FileCheck %s --check-prefix=LEAK_TIMEOUT
32 RUN: LLVMFuzzer-AccumulateAllocationsTest -detect_leaks=1 -runs=100000 2>&1 | FileCheck %s --check-…
[all …]
Dfuzzer-traces-hooks.test8 RUN: not LLVMFuzzer-MemcmpTest -seed=4294967295 -runs=100000 2>&1 | FileCheck %s
9 RUN: LLVMFuzzer-MemcmpTest -use_memcmp=0 -seed=4294967295 -runs=1000000 2>&1 | FileCheck %s --…
11 RUN: not LLVMFuzzer-StrncmpTest -seed=2 -runs=100000 2>&1 | FileCheck %s
12 RUN: LLVMFuzzer-StrncmpTest -use_memcmp=0 -seed=3 -runs=1000000 2>&1 | FileCheck %s --check-pr…
14 RUN: not LLVMFuzzer-StrcmpTest -seed=4 -runs=200000 2>&1 | FileCheck %s
15 RUN: LLVMFuzzer-StrcmpTest -use_memcmp=0 -seed=5 -runs=1000000 2>&1 | FileCheck %s --check-pre…
17 RUN: not LLVMFuzzer-StrstrTest -seed=6 -runs=200000 2>&1 | FileCheck %s
18 RUN: LLVMFuzzer-StrstrTest -use_memmem=0 -seed=7 -runs=1000000 2>&1 | FileCheck %s --check-pre…
20 RUN: LLVMFuzzer-RepeatedMemcmp -seed=10 -runs=100000 2>&1 | FileCheck %s --check-prefix=RECOMMENDED…
Dfuzzer-singleinputs.test1 RUN: not LLVMFuzzer-NullDerefTest %S/hi.txt 2>&1 | FileCheck %s --check-prefix=SingleInput
4 RUN: rm -rf %tmp/SINGLE_INPUTS
5 RUN: mkdir -p %tmp/SINGLE_INPUTS
6 RUN: echo aaa > %tmp/SINGLE_INPUTS/aaa
7 RUN: echo bbb > %tmp/SINGLE_INPUTS/bbb
8 RUN: LLVMFuzzer-SimpleTest %tmp/SINGLE_INPUTS/aaa %tmp/SINGLE_INPUTS/bbb 2>&1 | FileChec…
9 RUN: LLVMFuzzer-SimpleTest -max_len=2 %tmp/SINGLE_INPUTS/aaa %tmp/SINGLE_INPUTS/bbb 2>&1 | FileChec…
10 RUN: rm -rf %tmp/SINGLE_INPUTS
Ddump_coverage.test1 RUN: DIR=%t_workdir
2 RUN: BUILD_DIR=$(pwd)
3 RUN: rm -rf $DIR && mkdir -p $DIR && cd $DIR
4 RUN: not $BUILD_DIR/LLVMFuzzer-NullDerefTest -dump_coverage=1 2>&1 | FileCheck %s
5 RUN: $BUILD_DIR/LLVMFuzzer-DSOTest -dump_coverage=1 -runs=0 2>&1 | FileCheck %s --check-prefix=DSO
6 RUN: not $BUILD_DIR/LLVMFuzzer-NullDerefTest -dump_coverage=0 2>&1 | FileCheck %s --check-prefix=NO…
7 RUN: rm -rf $DIR
/third_party/protobuf/kokoro/linux/dockerfile/test/php/
DDockerfile5 RUN apt-get update && apt-get install -y \
29 RUN apt-get clean && apt-get update && apt-get install -y --force-yes \
42 RUN ln -sf /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
43 RUN wget http://ftp.gnu.org/gnu/bison/bison-2.6.4.tar.gz -O /var/local/bison-2.6.4.tar.gz
44 RUN cd /var/local \
52 RUN curl -sS https://getcomposer.org/installer | php
53 RUN mv composer.phar /usr/local/bin/composer
56 RUN git clone https://github.com/php/php-src
59 RUN cd php-src \
62 RUN cd php-src \
[all …]
/third_party/protobuf/kokoro/linux/32-bit/
DDockerfile13 RUN echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu trusty main" | tee /etc/apt/sources.list.d…
18 RUN apt-get clean && apt-get update && apt-get install -y --force-yes \
60 RUN wget http://am1.php.net/get/php-5.5.38.tar.bz2/from/this/mirror
61 RUN mv mirror php-5.5.38.tar.bz2
62 RUN tar -xvf php-5.5.38.tar.bz2
63 RUN cd php-5.5.38 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-5.5-zts && \
65 RUN cd php-5.5.38 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-5.5 && \
68 RUN wget http://am1.php.net/get/php-5.6.30.tar.bz2/from/this/mirror
69 RUN mv mirror php-5.6.30.tar.bz2
70 RUN tar -xvf php-5.6.30.tar.bz2
[all …]
/third_party/lz4/.circleci/images/primary/
DDockerfile3 RUN sudo apt-get -y -qq update
4 RUN sudo apt-get -y install software-properties-common
5 RUN sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
6 RUN sudo apt-get -y install cmake
7 RUN sudo apt-get -y install qemu-system-ppc qemu-user-static qemu-system-arm
8 RUN sudo apt-get -y install libc6-dev-armel-cross libc6-dev-arm64-cross libc6-dev-i386
9 RUN sudo apt-get -y install clang clang-tools
10 RUN sudo apt-get -y install gcc-5 gcc-5-multilib gcc-6
11 RUN sudo apt-get -y install valgrind
12 RUN sudo apt-get -y install gcc-multilib-powerpc-linux-gnu gcc-powerpc-linux-gnu gcc-arm-linux-gnue…
/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
6 RUN git clone --depth 1 https://github.com/microsoft/vscode.git /vscode
10 RUN yarn add typescript@/typescript.tgz
12 RUN yarn add rimraf
13 RUN yarn add typescript@/typescript.tgz
15 RUN yarn add typescript@/typescript.tgz
16 RUN yarn
/third_party/protobuf/kokoro/linux/dockerfile/test/ruby/
DDockerfile5 RUN apt-get update && apt-get install -y \
26 RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys \
29 RUN \curl -sSL https://get.rvm.io | bash -s stable
31 RUN /bin/bash -l -c "rvm install 2.3.8"
32 RUN /bin/bash -l -c "rvm install 2.4.5"
33 RUN /bin/bash -l -c "rvm install 2.5.1"
34 RUN /bin/bash -l -c "rvm install 2.6.0"
35 RUN /bin/bash -l -c "rvm install 2.7.0"
37 RUN /bin/bash -l -c "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
38 RUN /bin/bash -l -c "echo 'export PATH=/usr/local/rvm/bin:$PATH' >> ~/.bashrc"
/third_party/protobuf/kokoro/linux/dockerfile/test/php80/
DDockerfile5 RUN apt-get update && apt-get install -y \
31 RUN apt-get clean && apt-get update && apt-get install -y --force-yes \
44 RUN ln -sf /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
45 RUN wget https://ftp.gnu.org/gnu/bison/bison-3.0.1.tar.gz -O /var/local/bison-3.0.1.tar.gz
46 RUN cd /var/local \
54 RUN curl -sS https://getcomposer.org/installer | php
55 RUN mv composer.phar /usr/local/bin/composer
58 RUN git clone https://github.com/php/php-src
61 RUN cd php-src \
64 RUN cd php-src \
[all …]
/third_party/libcoap/build-env/
DDockerfile.develop3 RUN apt-get update && apt-get install -y cmake git g++
4 RUN apt-get clean
10 RUN ./autogen.sh --clean && ./autogen.sh
11 RUN ./configure --disable-documentation --enable-tests --enable-examples --with-openssl && make ins…
14 RUN git clone --depth 1 https://github.com/cabo/cn-cbor.git && cd cn-cbor && ./build.sh all doc ins…
19 RUN apt-get update && apt-get install -y autoconf automake gcc g++ gdb libtool libtool-bin make \
21 RUN apt-get install -y iproute2 lsof net-tools inetutils-ping netcat-openbsd less vim
22 RUN apt-get clean
28 RUN echo "/usr/local/lib" >>/etc/ld.so.conf.d/usr_local.conf && ldconfig /usr/local/lib
31 RUN adduser --disabled-password --gecos '' $user
[all …]
/third_party/googletest/googletest/test/
Dgoogletest-output-test-golden-lin.txt20 [ RUN ] ADeathTest.ShouldRunFirst
23 [ RUN ] ATypedDeathTest/0.ShouldRunFirst
26 [ RUN ] ATypedDeathTest/1.ShouldRunFirst
29 [ RUN ] My/ATypeParamDeathTest/0.ShouldRunFirst
32 [ RUN ] My/ATypeParamDeathTest/1.ShouldRunFirst
35 [ RUN ] PassingTest.PassingTest1
37 [ RUN ] PassingTest.PassingTest2
40 [ RUN ] NonfatalFailureTest.EscapesStringOperands
58 [ RUN ] NonfatalFailureTest.DiffForLongStrings
73 [ RUN ] FatalFailureTest.FatalFailureInSubroutine
[all …]
/third_party/skia/docker/skia-wasm-release/
DDockerfile4 RUN apt-get update && apt-get upgrade -y && apt-get install -y \
8 RUN cd /tmp \
14 RUN mkdir -p /tmp/skia \
20 RUN cd /tmp/skia/skia \
26 RUN if [ -z "${HASH}" ] ; then echo "HASH must be specified as a --build-arg"; exit 1; fi
28 RUN cd /tmp/skia/skia \
34 RUN if [ ! -z "${PATCH_REF}" ] ; then cd /tmp/skia/skia \
39 RUN cd /tmp/skia/skia \
44 RUN /tmp/skia/skia/modules/pathkit/compile.sh
47 RUN /tmp/skia/skia/modules/canvaskit/compile.sh
[all …]
/third_party/popt/ci/
DDockerfile6 RUN echo -e "deltarpm=0\ninstall_weak_deps=0\ntsflags=nodocs" >> /etc/dnf/dnf.conf
7 RUN rm -f /etc/yum.repos.d/*modular.repo
8 RUN dnf -y update
9 RUN dnf -y install \
21 RUN autoreconf -vi
22 RUN ./configure
23 RUN make
/third_party/typescript/tests/cases/docker/azure-sdk/
DDockerfile2 RUN npm install -g @microsoft/rush
3 RUN git clone --depth 1 https://github.com/Azure/azure-sdk-for-js.git /azure-sdk
5 RUN rush update
8 RUN rush add -p "typescript@3.5.1" --dev -m
11 RUN rm -rf typescript
13 RUN mkdir /typescript
14 RUN tar -xzvf /typescript.tgz -C /typescript
15 RUN ln -s /typescript/package ./typescript
/third_party/rust/crates/libc/ci/docker/i686-linux-android/
DDockerfile3 RUN dpkg --add-architecture i386
4 RUN apt-get update
5 RUN apt-get install -y --no-install-recommends libc6-dev gcc
6 RUN apt-get install -y --no-install-recommends \
24 RUN sh /android/android-install-ndk.sh $ANDROID_ARCH
25 RUN sh /android/android-install-sdk.sh $ANDROID_ARCH
26 RUN mv /root/.android /tmp
27 RUN chmod 777 -R /tmp/.android
28 RUN chmod 755 /android/sdk/cmdline-tools/tools/* /android/sdk/emulator/qemu/linux-x86_64/*
/third_party/rust/crates/libc/ci/docker/arm-linux-androideabi/
DDockerfile3 RUN dpkg --add-architecture i386
4 RUN apt-get update
5 RUN apt-get install -y --no-install-recommends libc6-dev gcc
6 RUN apt-get install -y --no-install-recommends \
24 RUN sh /android/android-install-ndk.sh $ANDROID_ARCH
25 RUN sh /android/android-install-sdk.sh $ANDROID_ARCH
26 RUN mv /root/.android /tmp
27 RUN chmod 777 -R /tmp/.android
28 RUN chmod 755 /android/sdk/cmdline-tools/tools/* /android/sdk/emulator/qemu/linux-x86_64/*
/third_party/rust/crates/libc/ci/docker/aarch64-linux-android/
DDockerfile3 RUN dpkg --add-architecture i386
4 RUN apt-get update
5 RUN apt-get install -y --no-install-recommends libc6-dev gcc
6 RUN apt-get install -y --no-install-recommends \
24 RUN sh /android/android-install-ndk.sh $ANDROID_ARCH
25 RUN sh /android/android-install-sdk.sh $ANDROID_ARCH
26 RUN mv /root/.android /tmp
27 RUN chmod 777 -R /tmp/.android
28 RUN chmod 755 /android/sdk/cmdline-tools/tools/* /android/sdk/emulator/qemu/linux-x86_64/*

12345678910>>...53