diff options
author | Aki <please@ignore.pl> | 2023-02-27 08:39:04 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-02-27 08:39:04 +0100 |
commit | 279e2db7858f626a64421cf3975b734f0ae22a7e (patch) | |
tree | 2eedfd08e20182b7606fa128a882cab130c1c044 /sim | |
parent | 6b25ce0013aec65eaca72968b4c43a84f9393ac7 (diff) | |
download | kurator-279e2db7858f626a64421cf3975b734f0ae22a7e.zip kurator-279e2db7858f626a64421cf3975b734f0ae22a7e.tar.gz kurator-279e2db7858f626a64421cf3975b734f0ae22a7e.tar.bz2 |
Increased test discovery timeout
Diffstat (limited to 'sim')
-rw-r--r-- | sim/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sim/CMakeLists.txt b/sim/CMakeLists.txt index a0a4d00..9713d96 100644 --- a/sim/CMakeLists.txt +++ b/sim/CMakeLists.txt @@ -33,4 +33,7 @@ target_link_libraries( PRIVATE GTest::gtest_main PRIVATE universe ) -gtest_discover_tests(${PROJECT_NAME}_test) +gtest_discover_tests( + ${PROJECT_NAME}_test + DISCOVERY_TIMEOUT 60 +) |