OSDN Git Service

Reduce number of tests in DEBUG mode.
authorLoRd_MuldeR <mulder2@gmx.de>
Tue, 2 Jan 2018 01:55:23 +0000 (02:55 +0100)
committerLoRd_MuldeR <mulder2@gmx.de>
Tue, 2 Jan 2018 01:55:23 +0000 (02:55 +0100)
tools/StressTester/src/main.cpp

index 65dc46b..8f9fa89 100644 (file)
 #include <typeinfo>
 
 #ifndef NDEBUG
+static const uint64_t MAX_VALUES = 0x945561;
 #define ABORT(X) abort()
 #else
+static const uint64_t MAX_VALUES = 0x11945561;
 #define ABORT(X) exit((X))
 #endif
 
-static const uint64_t MAX_VALUES = 0x11945561;
                                      
 /*----------------------------------------------------------------------*/
 /* Hash Value                                                           */