From 4d7797196bb3304bcf5eaf5c87e0b359c4f562f7 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sat, 20 Jul 2024 00:17:47 +0100 Subject: [PATCH] fixup! cmake: Create test suite for `ctest` --- cmake/tests.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmake/tests.cmake b/cmake/tests.cmake index 7f597262c82d0..57a004de0aba0 100644 --- a/cmake/tests.cmake +++ b/cmake/tests.cmake @@ -39,6 +39,9 @@ if(TARGET test_bitcoin) add_test(NAME ${test_suite_name} COMMAND test_bitcoin --run_test=${test_suite_name} --catch_system_error=no ) + set_property(TEST ${test_suite_name} PROPERTY + SKIP_REGULAR_EXPRESSION "no test cases matching filter" "Skipping" + ) endif() endfunction()