Skip to content

Commit

Permalink
Attempts to prevent CMake timeout issue with gtest_discover_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosNihelton committed Sep 19, 2023
1 parent 23084ab commit deec65f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storeapi/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ if(MSVC)
/w14928 # illegal copy-initialization; more than one user-defined conversion has been implicitly applied
/permissive- # standards conformance mode for MSVC compiler.
/fsanitize=address,leak,undefined
/Zi
/Zi
/INCREMENTAL:NO
/await
)
target_compile_options(StoreApiServicesTests INTERFACE ${MSVC_OPTIONS})
endif()

include(GoogleTest)
gtest_discover_tests(StoreApiServicesTests)
gtest_discover_tests(StoreApiServicesTests DISCOVERY_MODE PRE_TEST)

0 comments on commit deec65f

Please sign in to comment.