Shrink size on test on Windows due to taking too long.
This commit is contained in:
@@ -54,7 +54,13 @@ namespace test
|
||||
#ifdef NDEBUG
|
||||
static constexpr size_t iterations = 10000000;
|
||||
#else
|
||||
# ifdef _MSC_VER
|
||||
// Windows Debug build is very slow on this test.
|
||||
// Reduce complexity to balance CI times.
|
||||
static constexpr size_t iterations = 50000;
|
||||
# else
|
||||
static constexpr size_t iterations = 100000;
|
||||
# endif
|
||||
#endif
|
||||
setup(r, alloc);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user