shape ops work in progress

git-svn-id: http://skia.googlecode.com/svn/trunk@7758 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/LineCubicIntersection_Test.cpp b/experimental/Intersection/LineCubicIntersection_Test.cpp
index b81a87e..adf0112 100644
--- a/experimental/Intersection/LineCubicIntersection_Test.cpp
+++ b/experimental/Intersection/LineCubicIntersection_Test.cpp
@@ -27,7 +27,8 @@
         const _Line& line = lineCubicTests[index].line;
         Cubic reduce1;
         _Line reduce2;
-        int order1 = reduceOrder(cubic, reduce1, kReduceOrder_NoQuadraticsAllowed);
+        int order1 = reduceOrder(cubic, reduce1, kReduceOrder_NoQuadraticsAllowed,
+                kReduceOrder_TreatAsFill);
         int order2 = reduceOrder(line, reduce2);
         if (order1 < 4) {
             printf("[%d] cubic order=%d\n", (int) index, order1);