Skip to content

Commit fa0937d

Browse files
author
MarcoFalke
committed
test: Rename bitcoin-util-test.py to util/test_runner.py
To normalize the name of all three test runners (fuzz, functional, util).
1 parent fa050bb commit fa0937d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ after_build:
5151
test_script:
5252
- cmd: src\test_bitcoin.exe -l test_suite
5353
- cmd: src\bench_bitcoin.exe > NUL
54-
- ps: python test\util\bitcoin-util-test.py
54+
- ps: python test\util\test_runner.py
5555
- cmd: python test\util\rpcauth-test.py
5656
# Fee estimation test failing on appveyor with: WinError 10048] Only one usage of each socket address (protocol/network address/port) is normally permitted.
5757
# functional tests disabled for now. See

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ EXTRA_DIST += \
286286
test/fuzz
287287

288288
EXTRA_DIST += \
289-
test/util/bitcoin-util-test.py \
289+
test/util/test_runner.py \
290290
test/util/data/bitcoin-util-test.json \
291291
test/util/data/blanktxv1.hex \
292292
test/util/data/blanktxv1.json \

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1874,7 +1874,7 @@ AC_CONFIG_LINKS([contrib/devtools/test-symbol-check.py:contrib/devtools/test-sym
18741874
AC_CONFIG_LINKS([contrib/filter-lcov.py:contrib/filter-lcov.py])
18751875
AC_CONFIG_LINKS([test/functional/test_runner.py:test/functional/test_runner.py])
18761876
AC_CONFIG_LINKS([test/fuzz/test_runner.py:test/fuzz/test_runner.py])
1877-
AC_CONFIG_LINKS([test/util/bitcoin-util-test.py:test/util/bitcoin-util-test.py])
1877+
AC_CONFIG_LINKS([test/util/test_runner.py:test/util/test_runner.py])
18781878
AC_CONFIG_LINKS([test/util/rpcauth-test.py:test/util/rpcauth-test.py])
18791879

18801880
dnl boost's m4 checks do something really nasty: they export these vars. As a

src/Makefile.test.include

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ bitcoin_test_clean : FORCE
337337

338338
check-local: $(BITCOIN_TESTS:.cpp=.cpp.test)
339339
if BUILD_BITCOIN_TX
340-
@echo "Running test/util/bitcoin-util-test.py..."
341-
$(PYTHON) $(top_builddir)/test/util/bitcoin-util-test.py
340+
@echo "Running test/util/test_runner.py..."
341+
$(PYTHON) $(top_builddir)/test/util/test_runner.py
342342
endif
343343
@echo "Running test/util/rpcauth-test.py..."
344344
$(PYTHON) $(top_builddir)/test/util/rpcauth-test.py

test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ For ways to generate more granular profiles, see the README in
261261

262262
### Util tests
263263

264-
Util tests can be run locally by running `test/util/bitcoin-util-test.py`.
264+
Util tests can be run locally by running `test/util/test_runner.py`.
265265
Use the `-v` option for verbose output.
266266

267267
### Lint tests

test/config.ini.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
# These environment variables are set by the build process and read by
6-
# test/functional/test_runner.py and test/util/bitcoin-util-test.py
6+
# test/*/test_runner.py and test/util/rpcauth-test.py
77

88
[environment]
99
PACKAGE_NAME=@PACKAGE_NAME@
File renamed without changes.

0 commit comments

Comments
 (0)