Turn off test in fixed pt build.
git-svn-id: http://skia.googlecode.com/svn/trunk@3217 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index affc223..12f0f58 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -88,6 +88,7 @@
path.addCircle(0, 0, SkIntToScalar(2), SkPath::kCCW_Direction);
check_direction(&path, SkPath::kCCW_Direction, reporter);
+#ifdef SK_SCALAR_IS_FLOAT
// triangle with one point really far from the origin.
path.reset();
// the first point is roughly 1.05e10, 1.05e10
@@ -95,6 +96,7 @@
path.lineTo(110 * SK_Scalar1, -10 * SK_Scalar1);
path.lineTo(-10 * SK_Scalar1, 60 * SK_Scalar1);
check_direction(&path, SkPath::kCCW_Direction, reporter);
+#endif
}
static void add_rect(SkPath* path, const SkRect& r) {