add (temporary) diagnostic code for normalize test



git-svn-id: http://skia.googlecode.com/svn/trunk@8994 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PointTest.cpp b/tests/PointTest.cpp
index b909762..f8a3963 100644
--- a/tests/PointTest.cpp
+++ b/tests/PointTest.cpp
@@ -68,7 +68,11 @@
     SkPoint pt = { bigFloat, bigFloat };
     
     SkScalar length = pt.length();
-    REPORTER_ASSERT(reporter, !SkScalarIsFinite(length));
+    // expect this to be non-finite, but dump the results if not.
+    if (SkScalarIsFinite(length)) {
+        SkDebugf("length(%g, %g) == %g\n", pt.fX, pt.fY, length);
+        REPORTER_ASSERT(reporter, !SkScalarIsFinite(length));
+    }
 
     // this should succeed, even though we can't represent length
     REPORTER_ASSERT(reporter, pt.setLength(SK_Scalar1));