diff options
| author | Julian Fleischer <[email protected]> | 2018-08-27 16:14:42 +0200 |
|---|---|---|
| committer | Julian Fleischer <[email protected]> | 2018-08-27 16:14:42 +0200 |
| commit | c55c5f2b17414e2852e858e036ed23e8d65a383a (patch) | |
| tree | 03b58a781e191a54901ed0758b0b96aa164f0c78 | |
| parent | Merge #13863: travis: move script sections to files in `.travis/` subject to ... (diff) | |
| download | discoin-c55c5f2b17414e2852e858e036ed23e8d65a383a.tar.xz discoin-c55c5f2b17414e2852e858e036ed23e8d65a383a.zip | |
fix missing differentiation between UNIT and FUNCTIONAL tests in travis build
| -rwxr-xr-x | .travis/test_06_script.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/test_06_script.sh b/.travis/test_06_script.sh index dd4633039..e5fea8118 100755 --- a/.travis/test_06_script.sh +++ b/.travis/test_06_script.sh @@ -44,7 +44,7 @@ BEGIN_FOLD build DOCKER_EXEC make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && DOCKER_EXEC make $GOAL V=1 ; false ) END_FOLD -if [ "$RUN_TESTS" = "true" ]; then +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 @@ -60,7 +60,7 @@ if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then extended="--extended --exclude feature_pruning,feature_dbcrash" fi -if [ "$RUN_TESTS" = "true" ]; then +if [ "$RUN_FUNCTIONAL_TESTS" = "true" ]; then BEGIN_FOLD functional-tests DOCKER_EXEC test/functional/test_runner.py --combinedlogslen=4000 --coverage --quiet --failfast ${extended} END_FOLD |