From 06f61b2fd72bc41627fc3375161df84c2674d29b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 7 Apr 2021 00:55:57 +0300 Subject: cmake: check CTest tests output --- test/CMakeLists.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'test/CMakeLists.txt') diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 87697fe..3b415a8 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -12,6 +12,13 @@ target_link_libraries(call_stack PRIVATE Boost::nowide) install(TARGETS call_stack RUNTIME DESTINATION bin/test) install_pdbs(TARGETS call_stack DESTINATION bin/test) -add_test(NAME call_stack COMMAND call_stack) +find_package(Python3 REQUIRED COMPONENTS Interpreter) + +add_test(NAME call_stack COMMAND Python3::Interpreter + "${CMAKE_CURRENT_SOURCE_DIR}/../cmake/tools/ctest-driver.py" + run + --pass-regex test_ns::baz test_ns::bar test_ns::foo + -- + "$") add_subdirectory(unit_tests) -- cgit v1.2.3