From 46d308409947c0fcf9146909d7c2f4f76bbc16bd Mon Sep 17 00:00:00 2001 From: Fabian Albert Date: Thu, 23 May 2024 11:05:43 +0200 Subject: [PATCH] CI test (remove me) --- src/scripts/ci_build.py | 1 + src/tests/runner/test_runner.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index c318a557405..12605fdf6ae 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -249,6 +249,7 @@ def sanitize_kv(some_string): if target == 'fuzzers': flags += ['--unsafe-fuzzer-mode'] + test_cmd += ['--test-threads=1'] if target in ['fuzzers', 'coverage']: flags += ['--build-fuzzers=test'] diff --git a/src/tests/runner/test_runner.cpp b/src/tests/runner/test_runner.cpp index 7888330db57..bb695cf6d9f 100644 --- a/src/tests/runner/test_runner.cpp +++ b/src/tests/runner/test_runner.cpp @@ -20,6 +20,7 @@ #include #endif +#include #include namespace Botan_Tests { @@ -109,6 +110,7 @@ bool Test_Runner::run(const Test_Options& opts) { namespace { std::vector run_a_test(const std::string& test_name) { + std::cout << "=== Running test " << test_name << " ===" << std::endl; std::vector results; try {