shape ops work in progress
major milestone: 35.8M tests pass
(all rect/triangle/quadralateral)

git-svn-id: http://skia.googlecode.com/svn/trunk@5166 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersection_Tests.cpp b/experimental/Intersection/Intersection_Tests.cpp
index 414b911..67885b3 100644
--- a/experimental/Intersection/Intersection_Tests.cpp
+++ b/experimental/Intersection/Intersection_Tests.cpp
@@ -1,17 +1,21 @@
 #include "CubicIntersection_TestData.h"
 #include "Intersection_Tests.h"
+#include "SkTypes.h"
 
 void cubecode_test(int test);
 
 #define TEST_QUADS_FIRST 0
 
 void Intersection_Tests() {
+    int testsRun = 0;
+    QuadLineIntersectThreaded_Test(testsRun);
     SimplifyNew_Test();
-    Simplify4x4QuadralateralsThreaded_Test();
-    Simplify4x4QuadraticsThreaded_Test();
-    Simplify4x4RectsThreaded_Test();
-    SimplifyNondegenerate4x4TrianglesThreaded_Test();
-    SimplifyDegenerate4x4TrianglesThreaded_Test();
+    Simplify4x4QuadraticsThreaded_Test(testsRun);
+    Simplify4x4RectsThreaded_Test(testsRun);
+    SimplifyNondegenerate4x4TrianglesThreaded_Test(testsRun);
+    SimplifyDegenerate4x4TrianglesThreaded_Test(testsRun);
+    Simplify4x4QuadralateralsThreaded_Test(testsRun);
+    SkDebugf("%s total testsRun=%d\n", __FUNCTION__, testsRun);
     SimplifyFindNext_Test();
     SimplifyFindTop_Test();
     SimplifyAngle_Test();