aboutsummaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2023-04-29 10:19:36 +0200
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2023-05-02 14:12:04 +0200
commit82e6e3cae50d30b28b98f0cb7789c28e68170d5e (patch)
tree9f732d8fdae8b0010680ea035e13cee756fbe794 /test/functional
parentd89aca1bdbe52406f000e3fa8dda12c46dca9bdd (diff)
downloadbitcoin-82e6e3cae50d30b28b98f0cb7789c28e68170d5e.tar.xz
test: add ripemd160 to test framework modules list
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 ad3e9e1f214d739e098c6ebbd300da5df1026a44).
Diffstat (limited to 'test/functional')
-rwxr-xr-xtest/functional/test_runner.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index bcedc0c9af..6ad27a0868 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -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",