2016-06-26 09:47:03 -04:00
|
|
|
#!/usr/bin/env python
|
2014-08-19 10:28:58 -04:00
|
|
|
# Copyright 2014 BitPay, Inc.
|
2014-12-13 01:09:33 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
2014-08-19 10:28:58 -04:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2016-03-20 14:51:52 -03:00
|
|
|
from __future__ import division,print_function,unicode_literals
|
2014-08-19 10:28:58 -04:00
|
|
|
import os
|
|
|
|
import bctest
|
2014-09-30 17:05:27 -03:00
|
|
|
import buildenv
|
2014-08-19 10:28:58 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
bctest.bctester(os.environ["srcdir"] + "/test/data",
|
2014-09-30 17:05:27 -03:00
|
|
|
"bitcoin-util-test.json",buildenv)
|
2014-08-19 10:28:58 -04:00
|
|
|
|