Skip to content

Commit

Permalink
Merge bitcoin#27542: test: add ripemd160 to test framework modules list
Browse files Browse the repository at this point in the history
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 bitcoin#23716 (commit ad3e9e1).

ACKs for top commit:
  MarcoFalke:
    lgtm ACK 82e6e3c

Tree-SHA512: 10940e215f728291c7149931a356bfc42795c098bda76d760dfa68f86443a3755e1cd35cb9a8a7b2f48880beb53f3bee3842de2d74bcadd45c7b05c13ff04203
  • Loading branch information
fanquake committed May 2, 2023
2 parents 8a373a5 + 82e6e3c commit cfe5da4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/functional/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,14 @@
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",
Expand Down

0 comments on commit cfe5da4

Please sign in to comment.