mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-21 14:34:49 +01:00
Merge bitcoin/bitcoin#27542: test: add ripemd160 to test framework modules list
82e6e3cae5
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 (commitad3e9e1f21
). ACKs for top commit: MarcoFalke: lgtm ACK82e6e3cae5
Tree-SHA512: 10940e215f728291c7149931a356bfc42795c098bda76d760dfa68f86443a3755e1cd35cb9a8a7b2f48880beb53f3bee3842de2d74bcadd45c7b05c13ff04203
This commit is contained in:
commit
cfe5da4c90
1 changed files with 3 additions and 0 deletions
|
@ -69,11 +69,14 @@ if os.name != 'nt' or sys.getwindowsversion() >= (10, 0, 14393): #type:ignore
|
|||
TEST_EXIT_PASSED = 0
|
||||
TEST_EXIT_SKIPPED = 77
|
||||
|
||||
# List of framework modules containing unit tests. Should be kept in sync with
|
||||
# the output of `git grep unittest.TestCase ./test/functional/test_framework`
|
||||
TEST_FRAMEWORK_MODULES = [
|
||||
"address",
|
||||
"blocktools",
|
||||
"muhash",
|
||||
"key",
|
||||
"ripemd160",
|
||||
"script",
|
||||
"segwit_addr",
|
||||
"util",
|
||||
|
|
Loading…
Add table
Reference in a new issue