work in progress

git-svn-id: http://skia.googlecode.com/svn/trunk@3702 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersection_Tests.cpp b/experimental/Intersection/Intersection_Tests.cpp
index 5209eee..0179cb7 100644
--- a/experimental/Intersection/Intersection_Tests.cpp
+++ b/experimental/Intersection/Intersection_Tests.cpp
@@ -4,8 +4,12 @@
 void cubecode_test(int test);
 void testSimplify();
 
+#define TEST_QUADS_FIRST 01
+
 void Intersection_Tests() {
+#if !TEST_QUADS_FIRST
     ActiveEdge_Test();
+#endif
 
     cubecode_test(1);
     convert_testx();
@@ -24,10 +28,17 @@
     SimplifyPolygonPaths_Test();
     SimplifyRectangularPaths_Test();
     SimplifyQuadralateralPaths_Test();
-    
+
+#if TEST_QUADS_FIRST
+    ActiveEdge_Test();
+    Simplify4x4QuadraticsThreaded_Test();
+#endif
     SimplifyDegenerate4x4TrianglesThreaded_Test();
     SimplifyNondegenerate4x4TrianglesThreaded_Test();
     Simplify4x4QuadralateralsThreaded_Test();
+#if !TEST_QUADS_FIRST
+    Simplify4x4QuadraticsThreaded_Test();
+#endif
 
     QuadraticCoincidence_Test();
     QuadraticReduceOrder_Test();