change giantdashline test to use 4 intervals, to explicitly avoid the asPoints
special case code (which we may test separately later).



git-svn-id: http://skia.googlecode.com/svn/trunk@7375 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/DashBench.cpp b/bench/DashBench.cpp
index 42e23fd..f109246 100644
--- a/bench/DashBench.cpp
+++ b/bench/DashBench.cpp
@@ -338,7 +338,7 @@
 
         // deliberately pick intervals that won't be caught by asPoints(), so
         // we can test the filterPath code-path.
-        const SkScalar intervals[] = { 2, 1 };
+        const SkScalar intervals[] = { 2, 1, 1, 1 };
         fPathEffect.reset(new SkDashPathEffect(intervals,
                                                SK_ARRAY_COUNT(intervals), 0));