ci: [refactor] Move run_unit_tests to ci-windows-cross.py

This commit is contained in:
MarcoFalke 2026-02-10 12:53:51 +01:00
parent fa99ba5f14
commit fa2719ab1b
No known key found for this signature in database
2 changed files with 20 additions and 9 deletions

View File

@ -116,12 +116,29 @@ def run_functional_tests():
run(cmd_feature_unsupported_db)
def run_unit_tests():
# Can't use ctest here like other jobs as we don't have a CMake build tree.
commands = [
["./bin/test_bitcoin-qt.exe"],
# Intentionally run sequentially here, to catch test case failures caused by dirty global state from prior test cases:
["./bin/test_bitcoin.exe", "-l", "test_suite"],
["./src/secp256k1/bin/exhaustive_tests.exe"],
["./src/secp256k1/bin/noverify_tests.exe"],
["./src/secp256k1/bin/tests.exe"],
["./src/univalue/object.exe"],
["./src/univalue/unitester.exe"],
]
for cmd in commands:
run(cmd)
def main():
parser = argparse.ArgumentParser(description="Utility to run Windows CI steps.")
steps = [
"print_version",
"check_manifests",
"prepare_tests",
"run_unit_tests",
"run_functional_tests",
]
parser.add_argument("step", choices=steps, help="CI step to perform.")
@ -138,6 +155,8 @@ def main():
check_manifests()
elif args.step == "prepare_tests":
prepare_tests()
elif args.step == "run_unit_tests":
run_unit_tests()
elif args.step == "run_functional_tests":
run_functional_tests()

View File

@ -415,15 +415,7 @@ jobs:
run: py -3 .github/ci-windows-cross.py check_manifests
- name: Run unit tests
# Can't use ctest here like other jobs as we don't have a CMake build tree.
run: |
./bin/test_bitcoin-qt.exe
./bin/test_bitcoin.exe -l test_suite # Intentionally run sequentially here, to catch test case failures caused by dirty global state from prior test cases.
./src/secp256k1/bin/exhaustive_tests.exe
./src/secp256k1/bin/noverify_tests.exe
./src/secp256k1/bin/tests.exe
./src/univalue/object.exe
./src/univalue/unitester.exe
run: py -3 .github/ci-windows-cross.py run_unit_tests
- name: Prepare Windows test environment
run: |