2019-08-15 22:51:31 +02:00
#!/usr/bin/env bash
#
2023-08-16 19:27:31 +02:00
# Copyright (c) 2019-2020 The Bitcoin Core developers
2019-08-15 22:51:31 +02:00
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
export LC_ALL = C.UTF-8
2020-02-10 14:50:29 +01:00
export CONTAINER_NAME = ci_native_tsan
2020-06-03 15:26:39 +02:00
export PACKAGES = "clang llvm libc++abi-dev libc++-dev python3-zmq"
export DEP_OPTS = "CC=clang-15 CXX='clang++-15 -stdlib=libc++"
2022-06-24 16:38:14 +02:00
export TEST_RUNNER_EXTRA = "--extended --exclude feature_pruning,feature_dbcrash,wallet_multiwallet.py" # Temporarily suppress ASan heap-use-after-free (see issue #14163)
2020-06-29 08:26:23 +02:00
export TEST_RUNNER_EXTRA = " ${ TEST_RUNNER_EXTRA } --timeout-factor=4 " # Increase timeout because sanitizers slow down
2019-08-15 22:51:31 +02:00
export GOAL = "install"
2020-08-05 13:21:24 +02:00
export BITCOIN_CONFIG = "--enable-zmq --with-gui=no --with-sanitizers=thread CC=clang-15 CXX=clang++-15 --with-boost-process"
2022-04-07 18:03:41 +02:00
export CPPFLAGS = "-DDEBUG_LOCKORDER -DENABLE_DASH_DEBUG -DARENA_DEBUG"
export PYZMQ = true
2023-05-19 18:29:44 +02:00
export RUN_SYMBOL_TESTS = false