diff --git a/lib/cgo/tests/test_main.c b/lib/cgo/tests/test_main.c index 589a87a2f..7453e50db 100644 --- a/lib/cgo/tests/test_main.c +++ b/lib/cgo/tests/test_main.c @@ -7,6 +7,7 @@ int main(void) int number_failed_fork = 0; SRunner *sr = srunner_create(cipher_address()); SRunner *sr_fork = srunner_create(coin_transaction_fork()); + srunner_add_suite(sr, common_check_cipher_hash()); srunner_add_suite(sr, cipher_bitcoin()); srunner_add_suite(sr, cipher_testsuite()); srunner_add_suite(sr, cipher_crypto()); diff --git a/lib/cgo/tests/test_main.h b/lib/cgo/tests/test_main.h index c0ecd3f30..bf722ddd4 100644 --- a/lib/cgo/tests/test_main.h +++ b/lib/cgo/tests/test_main.h @@ -13,6 +13,7 @@ Suite *cipher_bitcoin(void); Suite *cipher_address(void); +Suite *common_check_cipher_hash(void); Suite *cipher_testsuite(void); Suite *cipher_crypto(void); Suite *cipher_encrypt_scrypt_chacha20poly1305(void);