From 03d906976bcd3cdcd65984d16acf18d2cb5fa2ab Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Mon, 12 Aug 2002 15:05:23 +0000 Subject: [PATCH] Reduced probes from 10,000 to 1,000 to speed regression tests [SVN r14789] --- operators_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operators_test.cpp b/operators_test.cpp index f2893e0..581c1f1 100644 --- a/operators_test.cpp +++ b/operators_test.cpp @@ -569,7 +569,7 @@ test_main( int , char * [] ) cout << "Created point, and operated on it." << endl; - for (int n = 0; n < 10000; ++n) + for (int n = 0; n < 1000; ++n) // was 10,000 but took too long (Beman) { boost::minstd_rand r; tester()(r);