Skip to content

Commit f1e8959

Browse files
committed
test: Drop no longer required bench output redirection
1 parent 4dbcdf2 commit f1e8959

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ task:
175175
- ccache --show-stats
176176
check_script:
177177
- src\test_bitcoin.exe -l test_suite
178-
- src\bench_bitcoin.exe --sanity-check > NUL
178+
- src\bench_bitcoin.exe --sanity-check
179179
- python test\util\test_runner.py
180180
- python test\util\rpcauth-test.py
181181
functional_tests_script:

src/Makefile.test.include

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ if TARGET_WINDOWS
377377
else
378378
if ENABLE_BENCH
379379
@echo "Running bench/bench_bitcoin (one iteration sanity check, only high priority)..."
380-
$(BENCH_BINARY) -sanity-check -priority-level=high > /dev/null
380+
$(BENCH_BINARY) -sanity-check -priority-level=high
381381
endif
382382
endif
383383
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check

0 commit comments

Comments
 (0)