Skip to content

Commit cfe5da4

Browse files
committed
Merge bitcoin/bitcoin#27542: test: add ripemd160 to test framework modules list
82e6e3c test: add ripemd160 to test framework modules list (Sebastian Falbesoner) Pull request description: Currently test runner doesn't execute the unit tests of the ripemd160 module, so add it to the list. All other framework modules that contain unit tests are included, as can be easily checked via `$ git grep unittest.TestCase ./test/functional/test_framework/` This is a late follow-up to PR #23716 (commit ad3e9e1). ACKs for top commit: MarcoFalke: lgtm ACK 82e6e3c Tree-SHA512: 10940e215f728291c7149931a356bfc42795c098bda76d760dfa68f86443a3755e1cd35cb9a8a7b2f48880beb53f3bee3842de2d74bcadd45c7b05c13ff04203
2 parents 8a373a5 + 82e6e3c commit cfe5da4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/functional/test_runner.py

+3
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,14 @@
6969
TEST_EXIT_PASSED = 0
7070
TEST_EXIT_SKIPPED = 77
7171

72+
# List of framework modules containing unit tests. Should be kept in sync with
73+
# the output of `git grep unittest.TestCase ./test/functional/test_framework`
7274
TEST_FRAMEWORK_MODULES = [
7375
"address",
7476
"blocktools",
7577
"muhash",
7678
"key",
79+
"ripemd160",
7780
"script",
7881
"segwit_addr",
7982
"util",

0 commit comments

Comments
 (0)