save work in progress

git-svn-id: http://skia.googlecode.com/svn/trunk@3141 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersection_Tests.cpp b/experimental/Intersection/Intersection_Tests.cpp
index e213de4..f27a3cf 100644
--- a/experimental/Intersection/Intersection_Tests.cpp
+++ b/experimental/Intersection/Intersection_Tests.cpp
@@ -2,6 +2,7 @@
 #include "Intersection_Tests.h"
 
 void cubecode_test(int test);
+void testSimplify();
 
 void Intersection_Tests() {
     cubecode_test(1);
@@ -16,6 +17,8 @@
     LineQuadraticIntersection_Test();
     LineCubicIntersection_Test();
 
+    testSimplify();
+
     QuadraticCoincidence_Test();
     QuadraticReduceOrder_Test();
     QuadraticBezierClip_Test();
@@ -26,4 +29,5 @@
     CubicReduceOrder_Test();
     CubicBezierClip_Test();
     CubicIntersection_Test();
+
 }