Increased repetition count of the test to reveal performance issues

[SVN r12373]
This commit is contained in:
Vesa Karvonen
2002-01-20 17:42:29 +00:00
parent 3789decea9
commit fbea3f4f9f

View File

@ -17,8 +17,12 @@
// ***
#define C(D,X) BOOST_PP_LESS_EQUAL(X,4)
#ifndef FOR_TEST_MAX
#define FOR_TEST_MAX 50
#endif
#define C(D,X) BOOST_PP_LESS_EQUAL(X,FOR_TEST_MAX)
#define F(D,X) BOOST_PP_INC(X)
#define I(D,X) -X
TEST(11 BOOST_PP_FOR(0,C,F,I))
TEST((FOR_TEST_MAX*(FOR_TEST_MAX+1)/2)+1 BOOST_PP_FOR(0,C,F,I))