diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-07 00:55:57 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-07 00:55:57 +0300 |
commit | 06f61b2fd72bc41627fc3375161df84c2674d29b (patch) | |
tree | 7df19832a66b187f421275411efbce3c88d15112 /test | |
parent | cmake: slight CMakeLists.txt refactoring (diff) | |
download | winapi-debug-06f61b2fd72bc41627fc3375161df84c2674d29b.tar.gz winapi-debug-06f61b2fd72bc41627fc3375161df84c2674d29b.zip |
cmake: check CTest tests output
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
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 + -- + "$<TARGET_FILE:call_stack>") add_subdirectory(unit_tests) |