0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-05 10:17:30 -05:00
bitcoin-bitcoin-core/src/test/bitcoin-util-test.py

14 lines
410 B
Python
Raw Normal View History

2014-08-19 10:28:58 -04:00
#!/usr/bin/python
# Copyright 2014 BitPay, Inc.
2014-12-13 12:09:33 +08: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.
from __future__ import division,print_function,unicode_literals
2014-08-19 10:28:58 -04:00
import os
import bctest
import buildenv
2014-08-19 10:28:58 -04:00
if __name__ == '__main__':
bctest.bctester(os.environ["srcdir"] + "/test/data",
"bitcoin-util-test.json",buildenv)
2014-08-19 10:28:58 -04:00