2014-08-19 16:28:58 +02:00
|
|
|
#!/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
|
2014-09-30 22:05:27 +02:00
|
|
|
import buildenv
|
2014-08-19 16:28:58 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
bctest.bctester(os.environ["srcdir"] + "/test/data",
|
2014-09-30 22:05:27 +02:00
|
|
|
"bitcoin-util-test.json",buildenv)
|
2014-08-19 16:28:58 +02:00
|
|
|
|