22 lines
638 B
Bash
Executable File
22 lines
638 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2018 The Bitcoin Core developers
|
|
# 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
|
|
|
|
cd build || (echo "could not enter build directory"; exit 1)
|
|
|
|
if [ "$RUN_UNIT_TESTS" = "true" ]; then
|
|
BEGIN_FOLD unit-tests
|
|
DOCKER_EXEC LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib make $MAKEJOBS check VERBOSE=1
|
|
END_FOLD
|
|
fi
|
|
|
|
if [ "$RUN_FUNCTIONAL_TESTS" = "true" ]; then
|
|
BEGIN_FOLD functional-tests
|
|
DOCKER_EXEC ./qa/pull-tester/rpc-tests.py -parallel=3 --coverage --failfast
|
|
END_FOLD
|
|
fi
|