diff options
| author | MarcoFalke <[email protected]> | 2017-10-03 21:24:53 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-10-03 21:25:00 +0200 |
| commit | b4a509a3f817121c3df98ddfd96b2769e18a3e5a (patch) | |
| tree | ea4ec13c97daf8adbcd846ff5b9efed17d8233e0 /src/Makefile.test.include | |
| parent | Merge #11293: Deduplicate CMerkleBlock construction code, add test coverage (diff) | |
| parent | qa: Restore bitcoin-util-test py2 compatibility (diff) | |
| download | discoin-b4a509a3f817121c3df98ddfd96b2769e18a3e5a.tar.xz discoin-b4a509a3f817121c3df98ddfd96b2769e18a3e5a.zip | |
Merge #11433: qa: Restore bitcoin-util-test py2 compatibility
fafff1220 qa: Restore bitcoin-util-test py2 compatibility (MarcoFalke)
Pull request description:
Currently `./configure && make check` will look for python3, then python2. As long as we support python2 (and use it as fallback), `make check` should run fine with both python2 and python3.
Fixes #11352 by @Zenitur
Tree-SHA512: a335ebdd224328d6f924fe52a9b97de196926476c9ee04ce3280743ea93bcae355eb2d5d4bed4050c01b2e904105595eac7db2eaa9307207581caa0a98ebcc0b
Diffstat (limited to 'src/Makefile.test.include')
| -rw-r--r-- | src/Makefile.test.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 73fb17c8d..d3e7b5da1 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -149,7 +149,7 @@ bitcoin_test_clean : FORCE check-local: @echo "Running test/util/bitcoin-util-test.py..." - $(top_builddir)/test/util/bitcoin-util-test.py + $(PYTHON) $(top_builddir)/test/util/bitcoin-util-test.py $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check if EMBEDDED_UNIVALUE $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check |