diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-10-01 08:50:17 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-10-01 08:55:34 +0200 |
| commit | a6f3e9d843d6fbcaf6dfbcd91171763b23d32632 (patch) | |
| tree | 24fccae44cfb787e91fc355f35705f38cd4cc59e /src/test/bitcoin-util-test.py | |
| parent | Merge pull request #5015 from theuni/win64test (diff) | |
| parent | tests: fix python test-runner for windows (diff) | |
| download | discoin-a6f3e9d843d6fbcaf6dfbcd91171763b23d32632.tar.xz discoin-a6f3e9d843d6fbcaf6dfbcd91171763b23d32632.zip | |
Merge pull request #5014
41d67c7 tests: fix python test-runner for windows (Cory Fields)
Diffstat (limited to 'src/test/bitcoin-util-test.py')
| -rwxr-xr-x | src/test/bitcoin-util-test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/bitcoin-util-test.py b/src/test/bitcoin-util-test.py index 40690c2fe..0eece14cf 100755 --- a/src/test/bitcoin-util-test.py +++ b/src/test/bitcoin-util-test.py @@ -5,8 +5,9 @@ import os import bctest +import buildenv if __name__ == '__main__': bctest.bctester(os.environ["srcdir"] + "/test/data", - "bitcoin-util-test.json") + "bitcoin-util-test.json",buildenv) |