aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.test.include
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2022-12-29 11:41:51 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2022-12-29 11:42:03 +0100
commitb9028b2e263a567f47c5261e5961c76ea093fbf0 (patch)
treec55c8d4a7c6a15055ced1a53e801baafa4cefad5 /src/Makefile.test.include
parent4654506c3014cdfad2647108e6bb3efc27f6dd96 (diff)
parentf1e89597c803001ab9d5afd7e173184fe6886d1d (diff)
downloadbitcoin-b9028b2e263a567f47c5261e5961c76ea093fbf0.tar.xz
Merge bitcoin/bitcoin#26481: bench: Suppress output when running with `-sanity-check` option
f1e89597c803001ab9d5afd7e173184fe6886d1d test: Drop no longer required bench output redirection (Hennadii Stepanov) 4dbcdf26a301f54c60c85ceab1aaa4dae43f6aeb bench: Suppress output when running with `-sanity-check` option (Hennadii Stepanov) Pull request description: This change allows to simplify CI tests, and makes it easier to integrate the `bench_bitcoin` binary into CMake custom [targets](https://cmake.org/cmake/help/latest/command/add_custom_target.html) or [commands](https://cmake.org/cmake/help/latest/command/add_custom_command.html), as `COMMAND` does not support output redirection. ACKs for top commit: aureleoules: tACK f1e89597c803001ab9d5afd7e173184fe6886d1d. Ran as expected and is more practical than using an output redirection. Tree-SHA512: 29086d428cccedcfd031c0b4514213cbc1670e35f955e8fd35cee212bc6f9616cf9f20d0cb984495390c4ae2c50788ace616aea907d44e0d6a905b9dda1685d8
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r--src/Makefile.test.include2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include
index 74c30f1caf..d34e6e0545 100644
--- a/src/Makefile.test.include
+++ b/src/Makefile.test.include
@@ -376,7 +376,7 @@ if TARGET_WINDOWS
else
if ENABLE_BENCH
@echo "Running bench/bench_bitcoin (one iteration sanity check, only high priority)..."
- $(BENCH_BINARY) -sanity-check -priority-level=high > /dev/null
+ $(BENCH_BINARY) -sanity-check -priority-level=high
endif
endif
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check