Shrink size on test on Windows due to taking too long.

This commit is contained in:
Matthew Parkinson
2019-08-14 14:21:59 +01:00
parent 9eaadcd6d8
commit da91c035a9

View File

@@ -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);