Skip to content
Snippets Groups Projects
Commit c8280edf authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Make vector 3D test scalable

parent 831e5a52
No related branches found
No related tags found
No related merge requests found
......@@ -276,7 +276,7 @@ BOOST_AUTO_TEST_CASE( vector_dist_iterator_test_use_3d )
print_test_v( "Testing 3D vector k<=",k);
// 3D test
for ( ; k >= 2 ; k-= (k > 2*big_step)?big_step:small_step )
for ( ; k >= 2 ; k-= decrement(k,big_step) )
{
BOOST_TEST_CHECKPOINT( "Testing 3D vector k=" << k );
Box<3,float> box({0.0,0.0,0.0},{1.0,1.0,1.0});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment