From 0947b23f2b40ca1a58026ec5420bd33965c1a275 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 8 May 2025 16:02:36 +0100 Subject: [PATCH] Fix missing CTest discovery of internals tests --- cpp/cmake/tests.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/cmake/tests.cmake b/cpp/cmake/tests.cmake index fbd1b515..c3c14776 100644 --- a/cpp/cmake/tests.cmake +++ b/cpp/cmake/tests.cmake @@ -106,6 +106,7 @@ add_dependencies(libloot_tests loot) target_link_libraries(libloot_tests PRIVATE loot GTest::gtest_main) enable_testing() +gtest_discover_tests(libloot_internals_tests DISCOVERY_TIMEOUT 10) gtest_discover_tests(libloot_tests DISCOVERY_TIMEOUT 10) ##############################