diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-11-05 09:30:23 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-11-05 09:31:01 -0500 |
commit | 73a8408bc3e4806fc102268a78bf52bd3f03c64b (patch) | |
tree | f72f43725dafbc512aab8cff431d134de9df4ef3 /.travis/test_06_script.sh | |
parent | dac2caa371a1c65faf34966c85dbafc30a0c640a (diff) | |
parent | dfef0df8406528915aaa718e761ce9eaab14ee37 (diff) |
Merge #14092: tests: Dry run bench_bitcoin as part "make check" to allow for quick identification of assertion/sanitizer failures in benchmarking code
dfef0df840 tests: Dry run bench_bitcoin (-evals=1 -scaling=0: <1 second running time) as part "make check" to allow for quick identification of assertion/sanitizer failures in benchmarking code (practicalswift)
00c6306a61 Remove RUN_BENCH logic (practicalswift)
Pull request description:
Dry run `bench_bitcoin` (`-evals=1 -scaling=0`: <1 second running time) as part `make check` to allow for quick identification of assertion/sanitizer failures or crashes in benchmarking code.
This is already tested in Travis but it is nice to have it locally too. The cost is near zero.
Tree-SHA512: 1f51b86b34bf97f75785f2694891d80f1bfb3e050211e6f6c35d8d9bc80c75bdebaa5ebfa51855ac0cf76d8773c3026bc576f60d0227afb0e646d728b83abde7
Diffstat (limited to '.travis/test_06_script.sh')
-rwxr-xr-x | .travis/test_06_script.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.travis/test_06_script.sh b/.travis/test_06_script.sh index 528d106aaf..62d58ecf4d 100755 --- a/.travis/test_06_script.sh +++ b/.travis/test_06_script.sh @@ -50,12 +50,6 @@ if [ "$RUN_UNIT_TESTS" = "true" ]; then END_FOLD fi -if [ "$RUN_BENCH" = "true" ]; then - BEGIN_FOLD bench - DOCKER_EXEC LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib $OUTDIR/bin/bench_bitcoin -scaling=0.001 - END_FOLD -fi - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then extended="--extended --exclude feature_pruning" fi |