mirror of
https://github.com/catchorg/Catch2.git
synced 2025-11-13 09:59:32 +01:00
Fewer assertions so that msvc debug build doesn't timeout
This commit is contained in:
@@ -28,7 +28,7 @@ TEST_CASE( "Failed REQUIRE in the main thread is fine" ) {
|
||||
for ( size_t t = 0; t < 4; ++t) {
|
||||
threads.emplace_back( [t]() {
|
||||
CAPTURE(t);
|
||||
for (size_t i = 0; i < 1'000; ++i) {
|
||||
for (size_t i = 0; i < 100; ++i) {
|
||||
CAPTURE(i);
|
||||
CHECK( false );
|
||||
CHECK( true );
|
||||
|
||||
Reference in New Issue
Block a user