shape ops work in progress

things work pretty well up to this point
it's time to apply recent deletion of binary code
algorithms to the unary code path

git-svn-id: http://skia.googlecode.com/svn/trunk@6788 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersection_Tests.cpp b/experimental/Intersection/Intersection_Tests.cpp
index 23ce5be..6170946 100644
--- a/experimental/Intersection/Intersection_Tests.cpp
+++ b/experimental/Intersection/Intersection_Tests.cpp
@@ -14,20 +14,21 @@
 
 void Intersection_Tests() {
     int testsRun = 0;
+    
     SimplifyNew_Test();
-    ShapeOps4x4RectsThreaded_Test(testsRun);
-    QuadraticIntersection_Test();
-    LineQuadraticIntersection_Test();
-    MiniSimplify_Test();
-    SimplifyAngle_Test();
-    QuarticRoot_Test();
     Simplify4x4QuadraticsThreaded_Test(testsRun);
     QuadLineIntersectThreaded_Test(testsRun);
     Simplify4x4RectsThreaded_Test(testsRun);
     SimplifyNondegenerate4x4TrianglesThreaded_Test(testsRun);
     SimplifyDegenerate4x4TrianglesThreaded_Test(testsRun);
     Simplify4x4QuadralateralsThreaded_Test(testsRun);
+    ShapeOps4x4RectsThreaded_Test(testsRun);
     SkDebugf("%s total testsRun=%d\n", __FUNCTION__, testsRun);
+    QuadraticIntersection_Test();
+    LineQuadraticIntersection_Test();
+    MiniSimplify_Test();
+    SimplifyAngle_Test();
+    QuarticRoot_Test();
     QuadraticBezierClip_Test();
     SimplifyFindNext_Test();
     SimplifyFindTop_Test();