diff options
| author | Pieter Wuille <[email protected]> | 2017-09-20 16:57:44 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2018-02-19 18:55:21 -0800 |
| commit | 92f1f8b3197c2ba3cf65556070509838098975a4 (patch) | |
| tree | 6096fc5d7b30a3ab33a633e721eed3a8a2259eae /src/Makefile.test.include | |
| parent | Split key_io (address/key encodings) off from base58 (diff) | |
| download | discoin-92f1f8b3197c2ba3cf65556070509838098975a4.tar.xz discoin-92f1f8b3197c2ba3cf65556070509838098975a4.zip | |
Split off key_io_tests from base58_tests
Diffstat (limited to 'src/Makefile.test.include')
| -rw-r--r-- | src/Makefile.test.include | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index d4d972b2b..4ee910251 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -9,13 +9,13 @@ TEST_SRCDIR = test TEST_BINARY=test/test_bitcoin$(EXEEXT) JSON_TEST_FILES = \ - test/data/script_tests.json \ - test/data/base58_keys_valid.json \ test/data/base58_encode_decode.json \ - test/data/base58_keys_invalid.json \ + test/data/key_io_valid.json \ + test/data/key_io_invalid.json \ + test/data/script_tests.json \ + test/data/sighash.json \ test/data/tx_invalid.json \ - test/data/tx_valid.json \ - test/data/sighash.json + test/data/tx_valid.json RAW_TEST_FILES = @@ -45,6 +45,7 @@ BITCOIN_TESTS =\ test/DoS_tests.cpp \ test/getarg_tests.cpp \ test/hash_tests.cpp \ + test/key_io_tests.cpp \ test/key_tests.cpp \ test/limitedmap_tests.cpp \ test/dbwrapper_tests.cpp \ |