Home
last modified time | relevance | path

Searched +full:build +full:- +full:tsan (Results 1 – 25 of 74) sorted by relevance

123

/third_party/libuv/.github/workflows/
Dsanitizer.yml7 runs-on: ubuntu-latest
9 - uses: actions/checkout@v2
10 - name: Setup
12 sudo apt-get install ninja-build
13 - name: Envinfo
15 - name: TSAN
17 mkdir build-tsan
18 … (cd build-tsan && cmake .. -G Ninja -DBUILD_TESTING=ON -DTSAN=ON -DCMAKE_BUILD_TYPE=Release)
19 cmake --build build-tsan
20 ./build-tsan/uv_run_tests_a || true # currently permit failures
[all …]
/third_party/grpc/tools/
Dbazel.rc3 build --client_env=CC=clang
4 build --copt=-DGRPC_BAZEL_BUILD
5 build --action_env=GRPC_BAZEL_RUNTIME=1
6 build --define=use_fast_cpp_protos=true
8 build:opt --compilation_mode=opt
9 build:opt --copt=-Wframe-larger-than=16384
11 build:dbg --compilation_mode=dbg
13 build:windows_opt --compilation_mode=opt
14 build:windows_dbg --compilation_mode=dbg
16 build:asan --strip=never
[all …]
/third_party/grpc/tools/remote_build/
Drbe_common.bazelrc8 # http://www.apache.org/licenses/LICENSE-2.0
17 # see https://github.com/bazelbuild/bazel-toolchains/tree/master/bazelrc
20 startup --host_jvm_args=-Dbazel.DigestFunction=SHA256
22 build --crosstool_top=@rbe_default//cc:toolchain
23 build --extra_toolchains=@rbe_default//config:cc-toolchain
25 build --extra_execution_platforms=@rbe_default//config:platform
26 build --host_platform=@rbe_default//config:platform
27 build --platforms=@rbe_default//config:platform
29 build --spawn_strategy=remote
30 build --strategy=Javac=remote
[all …]
DREADME.md3 This allows you to spawn gRPC C/C++ remote build and tests from your workstation with
7 remote build and execution cluster), others will need to rely on local test runs
13 - See [Installing Bazel](https://docs.bazel.build/versions/master/install.html) for instructions ho…
15 - Setup application default credentials for running remote builds by following the ["Set credential…
18 ## Running remote build manually from dev workstation
20build & execution platform. If you want to run tests on linux, you need to run bazel from a linux …
27 bazel --bazelrc=tools/remote_build/manual.bazelrc test --config=opt //test/...
30 This also works for sanitizer runs (`asan`, `msan`, `tsan`, `ubsan`):
33 bazel --bazelrc=tools/remote_build/manual.bazelrc test --config=asan //test/...
40 bazel --bazelrc=tools/remote_build/windows.bazelrc test --config=windows_opt //test/...
[all …]
/third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/
DBuild-Debian10-Clang-x86_64-Debug-SwiftShader_TSAN.json5 "-u",
7 "--json-output",
23 "-u",
25 "--json-output",
27 "ensure-directory",
28 "--mode",
30 …"[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-SwiftShader_TSAN/Debug/swiftsha…
38 "-DSWIFTSHADER_BUILD_TESTS=OFF",
39 "-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF",
40 "-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF",
[all …]
DBuild-Debian10-Clang-x86_64-Debug-TSAN.json5 "-u",
7 "--json-output",
23 "-u",
24 "[START_DIR]/cache/work/skia/bin/fetch-gn"
32 "name": "fetch-gn"
37 "-s"
48 "name": "ccache stats-start"
54 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-TSAN/Debug",
55--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\"…
71 "-C",
[all …]
/third_party/skia/site/docs/dev/testing/
Dxsan.md2 ---
3 title: "MSAN, ASAN, & TSAN"
4 linkTitle: "MSAN, ASAN, & TSAN"
6 ---
11 Compiling Skia with ASAN, UBSAN, or TSAN can be done with the latest version of Clang.
13 - UBSAN works on Linux, Mac, Android, and Windows, though some checks are platform-specific.
14 - ASAN works on Linux, Mac, Android, and Windows.
15 - TSAN works on Linux and Mac.
16 - MSAN works on Linux[1].
19 with the system-provided C++ standard library, which is usually libstdc++.
[all …]
/third_party/flutter/skia/site/dev/testing/
Dxsan.md1 MSAN, ASAN, & TSAN
6 Compiling Skia with ASAN, UBSAN, or TSAN can be done with the latest version of Clang.
8 - UBSAN works on Linux, Mac, Android, and Windows, though some checks are platform-specific.
9 - ASAN works on Linux, Mac, Android.
10 - TSAN works on Linux and Mac.
11 - MSAN works on Linux[1].
14 with the system-provided C++ standard library, which is usually libstdc++.
18 [1]To compile and run with MSAN, an MSAN-instrumented version of libc++ is needed.
19 It's generally easiest to run one of the following 2 steps to build/download a recent version
23 ------------------------------------------
[all …]
/third_party/skia/infra/bots/recipe_modules/build/
Ddefault.py2 # Use of this source code is governed by a BSD-style license that can be
10 api.run(api.python, 'build command_buffer',
13 '--chrome-dir', chrome_dir,
14 '--output-dir', out,
15 '--extra-gn-args', 'mac_sdk_min="10.13"',
16 '--no-sync', '--no-hooks', '--make-output-dir'])
20 """Build SwiftShader with CMake.
31 '-DSWIFTSHADER_BUILD_TESTS=OFF',
32 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF',
33 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow.
[all …]
/third_party/skia/infra/bots/assets/clang_linux/
Dcreate.py5 # Use of this source code is governed by a BSD-style license that can be
25 # Build Clang, lld, compiler-rt (sanitizer support) and libc++.
27 subprocess.check_call(["git", "clone", "--depth", "1", "-b", BRANCH,
28 "https://llvm.googlesource.com/llvm-project"])
29 os.chdir("llvm-project")
32 subprocess.check_call(["cmake", "../llvm", "-G", "Ninja",
33 "-DCMAKE_BUILD_TYPE=MinSizeRel",
34 "-DCMAKE_INSTALL_PREFIX=" + target_dir,
35 "-DLLVM_ENABLE_PROJECTS=clang;clang-tools-extra;" +
36 "compiler-rt;libcxx;libcxxabi;lld",
[all …]
/third_party/grpc/test/cpp/qps/
Dgen_build_yaml.py9 # http://www.apache.org/licenses/LICENSE-2.0
78 # make an arbitrary guess if set to auto-detect
91 # Originally, this method was used to generate qps test cases for build.yaml,
92 # but since the test cases are now extracted from bazel BUILD file,
107 '--scenarios_json',
122 'exclude_configs': ['tsan', 'asan'] +
139 '--run_inproc', '--scenarios_json',
154 'exclude_configs': ['tsan', 'asan'],
169 '--scenarios_json',
187 if c not in ('tsan', 'asan')),
/third_party/boost/libs/beast/
Dazure-pipelines.yml2 GIT_BRANCH: $(Build.SourceBranch)
5 - job: 'LinuxCoverage'
7 vmImage: 'ubuntu-16.04'
9 image: djarek/boost-beast-ci:latest
10 options: --privileged
12 - bash: |
13 sudo apt update && sudo apt install -y g++ lcov
15 - bash: |
16 set -e
19 $BUILD_DIR/tools/get-boost.sh $GIT_BRANCH $BUILD_DIR
[all …]
/third_party/skia/third_party/externals/abseil-cpp/ci/
Dlinux_clang-latest_libcxx_tsan_bazel.sh9 # https://www.apache.org/licenses/LICENSE-2.0
17 # This script that can be invoked to test abseil-cpp in a hermetic environment
21 set -euox pipefail
23 if [[ -z ${ABSEIL_ROOT:-} ]]; then
27 if [[ -z ${STD:-} ]]; then
31 if [[ -z ${COMPILATION_MODE:-} ]]; then
35 if [[ -z ${EXCEPTIONS_MODE:-} ]]; then
36 EXCEPTIONS_MODE="-fno-exceptions -fexceptions"
44 if [[ ${USE_BAZEL_CACHE:-0} -ne 0 ]]; then
45 …DOCKER_EXTRA_ARGS="--mount type=bind,source=${KOKORO_KEYSTORE_DIR},target=/keystore,readonly ${DOC…
[all …]
/third_party/grpc/templates/tools/dockerfile/
Dclang_update.include2 # Update clang to a version with improved tsan and fuzzing capabilities
4 RUN git clone -n -b release_38 http://llvm.org/git/llvm.git && ${'\\'}
6 RUN git clone -n -b release_38 http://llvm.org/git/clang.git && ${'\\'}
8 RUN git clone -n -b release_38 http://llvm.org/git/compiler-rt.git && ${'\\'}
9 cd compiler-rt && git checkout 3176922 && cd ..
10 RUN git clone -n -b release_38 ${'\\'}
11 http://llvm.org/git/clang-tools-extra.git && cd clang-tools-extra && ${'\\'}
13 RUN git clone -n -b release_38 http://llvm.org/git/libcxx.git && ${'\\'}
15 RUN git clone -n -b release_38 http://llvm.org/git/libcxxabi.git && ${'\\'}
19 RUN mv compiler-rt llvm/projects
[all …]
/third_party/skia/third_party/externals/angle2/infra/config/
Dmain.star4 # Use of this source code is governed by a BSD-style license that can be
13 "-module-docstring",
14 "-function-docstring",
20 # Launch 0% of Swarming tasks for builds in "realms-aware mode"
38 buildbucket = "cr-buildbucket.appspot.com",
39 logdog = "luci-logdog.appspot.com",
40 milo = "luci-milo.appspot.com",
41 notify = "luci-notify.appspot.com",
42 scheduler = "luci-scheduler.appspot.com",
43 swarming = "chromium-swarm.appspot.com",
[all …]
/third_party/skia/third_party/externals/harfbuzz/.circleci/
Dconfig.yml4 win32-executor:
6 - image: cimg/base:edge-20.04
7 win64-executor:
9 - image: cimg/base:edge-20.04
10 autotools-executor:
12 - image: cimg/base:edge-20.04
16 macos-aat-fonts:
20 - checkout
21- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g…
22 - run: pip3 install meson --upgrade
[all …]
/third_party/boringssl/src/
DCMakeLists.txt17 # This is a dummy target which all other targets depend on (manually - see other
23 # Android-NDK CMake files reconfigure the path and so Go and Perl won't be
39 pkg_check_modules(LIBUNWIND libunwind-generic)
41 add_definitions(-DBORINGSSL_HAVE_LIBUNWIND)
59 add_definitions(-DBORINGSSL_ALLOW_CXX_RUNTIME)
66 add_definitions(-DBORINGSSL_DISPATCH_TEST)
68 # command-line, but not add_definitions.
69 set(CMAKE_ASM_NASM_FLAGS "${CMAKE_ASM_NASM_FLAGS} -DBORINGSSL_DISPATCH_TEST")
73 # Add a RelWithAsserts build configuration. It is the same as Release, except it
76 string(REGEX REPLACE "(^| )[/-]DNDEBUG( |$)" " " "${VAR}_RELWITHASSERTS"
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/
DREADME.rst1 Subzero - Fast code generator for PNaCl bitcode
5 ------
11 --------
15 <https://sites.google.com/a/chromium.org/dev/nativeclient/pnacl/developing-pnacl>`_
18 Checking out the Native Client project also gets the pre-built clang and LLVM
19 tools in ``native_client/../third_party/llvm-build/Release+Asserts/bin`` which
26 The Makefile is designed to be used as part of the higher level LLVM build
27 system. To build manually, use the ``Makefile.standalone``. There are several
28 build configurations from the command line::
30 make -f Makefile.standalone
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/
DREADME.rst1 Subzero - Fast code generator for PNaCl bitcode
5 ------
11 --------
15 <https://sites.google.com/a/chromium.org/dev/nativeclient/pnacl/developing-pnacl>`_
18 Checking out the Native Client project also gets the pre-built clang and LLVM
19 tools in ``native_client/../third_party/llvm-build/Release+Asserts/bin`` which
26 The Makefile is designed to be used as part of the higher level LLVM build
27 system. To build manually, use the ``Makefile.standalone``. There are several
28 build configurations from the command line::
30 make -f Makefile.standalone
[all …]
/third_party/grpc/tools/buildgen/plugins/
Dmake_fuzzer_tests.py7 # http://www.apache.org/licenses/LICENSE-2.0
24 if tgt['build'] == 'fuzzer':
26 new_target['build'] = 'test'
48 'exclude_configs': ['tsan'],
/third_party/skia/infra/bots/recipe_modules/build/examples/
Dfull.py2 # Use of this source code is governed by a BSD-style license that can be
8 'build',
23 api.build(checkout_root=checkout_root, out_dir=out_dir)
25 api.build.copy_build_products(out_dir=out_dir, dst=dst)
30 'Build-Debian9-Clang-arm-Release-Flutter_Android_Docker',
31 'Build-Debian10-GCC-x86-Debug-Docker',
32 'Build-Debian10-GCC-x86_64-Debug-Docker',
33 'Build-Debian10-GCC-x86_64-Release-NoGPU_Docker',
34 'Build-Debian10-GCC-x86_64-Release-Shared_Docker',
35 'Build-Debian10-Clang-arm-Release-Android_API26',
[all …]
/third_party/flutter/skia/infra/bots/
Djobs.json2 "Build-Debian9-Clang-arm-Debug-Android",
3 "Build-Debian9-Clang-arm-Debug-Android_Vulkan",
4 "Build-Debian9-Clang-arm-Debug-Chromebook_GLES",
5 "Build-Debian9-Clang-arm-Debug-Chromecast",
6 "Build-Debian9-Clang-arm-Release-Android",
7 "Build-Debian9-Clang-arm-Release-Android_API26",
8 "Build-Debian9-Clang-arm-Release-Android_ASAN",
9 "Build-Debian9-Clang-arm-Release-Android_ASAN_Vulkan",
10 "Build-Debian9-Clang-arm-Release-Android_Vulkan",
11 "Build-Debian9-Clang-arm-Release-Chromebook_GLES",
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/kokoro/ubuntu/
Ddocker.sh9 # https://www.apache.org/licenses/LICENSE-2.0
17 set -e # Fail on any error.
19 function show_cmds { set -x; }
32 git submodule update --init
35 using gcc-9 # Always update gcc so we get a newer standard library.
38 using cmake-3.17.2
41 BUILD_DIR=/tmp/marl-build
45 COMMON_CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=${BUILD_TYPE}"
46 COMMON_CMAKE_FLAGS+=" -DMARL_BUILD_EXAMPLES=1"
47 COMMON_CMAKE_FLAGS+=" -DMARL_BUILD_TESTS=1"
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/kokoro/macos/
Dbuild.sh9 # https://www.apache.org/licenses/LICENSE-2.0
17 set -e # Fail on any error.
21 function show_cmds { set -x; }
32 git submodule update --init
38 BUILD_DIR=/tmp/marl-build
42 COMMON_CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=${BUILD_TYPE}"
43 COMMON_CMAKE_FLAGS+=" -DMARL_BUILD_EXAMPLES=1"
44 COMMON_CMAKE_FLAGS+=" -DMARL_BUILD_TESTS=1"
45 COMMON_CMAKE_FLAGS+=" -DMARL_BUILD_BENCHMARKS=1"
46 COMMON_CMAKE_FLAGS+=" -DMARL_WARNINGS_AS_ERRORS=1"
[all …]
/third_party/grpc/tools/dockerfile/test/fuzzer/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
19 RUN apt-get update && apt-get install -y \
21 autotools-dev \
22 build-essential \
28 gcc-multilib \
34 libc6-dbg \
35 libc6-dev \
36 libgtest-dev \
41 python-dev \
42 python-setuptools \
[all …]

123