]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Reclassify some Grid tests as "slow."
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 2 Oct 2011 16:16:19 +0000 (12:16 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 2 Oct 2011 16:16:19 +0000 (12:16 -0400)
src/Grid.hs

index db8d4d3a8e852386fe287b13e5e02a2ffa6af257..0131a64b8460ad42010346b4a87ae3a4d6482f99 100644 (file)
@@ -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 ]