From: Michael Orlitzky Date: Sun, 2 Oct 2011 16:16:19 +0000 (-0400) Subject: Reclassify some Grid tests as "slow." X-Git-Tag: 0.0.1~117 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=de6759db987b07efdd5bf1f238f2d0d9eb8d3d4c;hp=8d413191a61d8b444213b0349bfe3df3fd24f35b;p=spline3.git Reclassify some Grid tests as "slow." --- 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 ]