From 631302e68e888f77fbbf22123137b575d9271fa0 Mon Sep 17 00:00:00 2001 From: miloyip Date: Wed, 15 Apr 2015 14:41:33 +0800 Subject: [PATCH] Reduce random test iterations to speedup travis --- test/unittest/readertest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unittest/readertest.cpp b/test/unittest/readertest.cpp index 7c70bc9..1ff90ca 100644 --- a/test/unittest/readertest.cpp +++ b/test/unittest/readertest.cpp @@ -303,7 +303,7 @@ static void TestParseDouble() { 2.2250738585072014e-308); { - static const unsigned count = 1000; // Tested with 1000000 locally + static const unsigned count = 100; // Tested with 1000000 locally Random r; Reader reader; // Reusing reader to prevent heap allocation