add discovery timeout to gtests
All checks were successful
CMake / build (push) Successful in 24m18s

This commit is contained in:
2024-01-05 22:53:18 +01:00
parent 275f1208c5
commit 5ea76e566e
5 changed files with 6 additions and 6 deletions

View File

@@ -8,5 +8,5 @@ target_link_libraries(
BuzhashTest PRIVATE BuzhashTest PRIVATE
GTest::gtest_main chunkers GTest::gtest_main chunkers
) )
gtest_discover_tests(BuzhashTest) gtest_discover_tests(BuzhashTest DISCOVERY_TIMEOUT 600)

View File

@@ -11,5 +11,5 @@ target_link_libraries(
CLITests PRIVATE CLITests PRIVATE
GTest::gtest_main testUtils GTest::gtest_main testUtils
) )
gtest_discover_tests(CLITests) gtest_discover_tests(CLITests DISCOVERY_TIMEOUT 600)

View File

@@ -10,5 +10,5 @@ target_link_libraries(
GTest::gtest_main crypto GTest::gtest_main crypto
) )
gtest_discover_tests(CryptoTests) gtest_discover_tests(CryptoTests DISCOVERY_TIMEOUT 600)

View File

@@ -10,5 +10,5 @@ target_link_libraries(
GTest::gtest_main commands utils testUtils repo GTest::gtest_main commands utils testUtils repo
) )
gtest_discover_tests(FullTest) gtest_discover_tests(FullTest DISCOVERY_TIMEOUT 600)

View File

@@ -20,5 +20,5 @@ target_link_libraries(
GTest::gtest_main commands utils testUtils repo GTest::gtest_main commands utils testUtils repo
) )
gtest_discover_tests(ChunkTest) gtest_discover_tests(ChunkTest DISCOVERY_TIMEOUT 600)
gtest_discover_tests(FileRepositoryTest) gtest_discover_tests(FileRepositoryTest DISCOVERY_TIMEOUT 600)