From de6759db987b07efdd5bf1f238f2d0d9eb8d3d4c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 2 Oct 2011 12:16:19 -0400 Subject: [PATCH] Reclassify some Grid tests as "slow." --- src/Grid.hs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Grid.hs b/src/Grid.hs index db8d4d3..0131a64 100644 --- a/src/Grid.hs +++ b/src/Grid.hs @@ -498,15 +498,15 @@ grid_tests = trilinear_c0_t0_tests, p80_29_properties, testCase "tetrahedra collision test isn't too sensitive" - test_tetrahedra_collision_sensitivity, - testCase "trilinear reproduced" test_trilinear_reproduced, - testCase "zeros reproduced" test_zeros_reproduced ] + test_tetrahedra_collision_sensitivity, + testProperty "cube indices within bounds" + prop_cube_indices_never_go_out_of_bounds ] -- Do the slow tests last so we can stop paying attention. slow_tests :: Test.Framework.Test slow_tests = testGroup "Slow Tests" [ - testProperty "cube indices within bounds" - prop_cube_indices_never_go_out_of_bounds, - testCase "trilinear9x9x9 reproduced" test_trilinear9x9x9_reproduced ] + testCase "trilinear reproduced" test_trilinear_reproduced, + testCase "trilinear9x9x9 reproduced" test_trilinear9x9x9_reproduced, + testCase "zeros reproduced" test_zeros_reproduced ] -- 2.43.2