mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 13:59:06 +01:00
41d67c78bf
Windows needed a few fixups to get the tests running: 1. bitcoin-tx needs a file extension in Windows. Take this opportunity to add an env file, which pulls variables out of our build config. This can be extended as needed, for now it's very simple. 2. After #1, split the args out of the exec key in the test data. 3. Correct the line-endings from windows stdout
14 lines
351 B
Python
Executable File
14 lines
351 B
Python
Executable File
#!/usr/bin/python
|
|
# Copyright 2014 BitPay, Inc.
|
|
# Distributed under the MIT/X11 software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
import os
|
|
import bctest
|
|
import buildenv
|
|
|
|
if __name__ == '__main__':
|
|
bctest.bctester(os.environ["srcdir"] + "/test/data",
|
|
"bitcoin-util-test.json",buildenv)
|
|
|