diff options
author | furszy <matiasfurszyfer@protonmail.com> | 2022-09-25 12:46:32 -0300 |
---|---|---|
committer | furszy <matiasfurszyfer@protonmail.com> | 2022-10-20 10:21:05 -0300 |
commit | 3e9d0bea8deb61596c91ead997e9db83f5b0ff68 (patch) | |
tree | 69123cede0fd92381ec08ac1af3772efa5a95b5e /src/Makefile.test.include | |
parent | 466b54bd4ab8227ff8c066a027a92791366a81c1 (diff) |
build: only run high priority benchmarks in 'make check'
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r-- | src/Makefile.test.include | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 5f2e535e85..c4aeef3896 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -373,8 +373,8 @@ endif if TARGET_WINDOWS else if ENABLE_BENCH - @echo "Running bench/bench_bitcoin (one iteration sanity check)..." - $(BENCH_BINARY) --sanity-check > /dev/null + @echo "Running bench/bench_bitcoin (one iteration sanity check, only high priority)..." + $(BENCH_BINARY) -sanity-check -priority-level=high > /dev/null endif endif $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check |