add (temporary) diagnostic code for normalize test

git-svn-id: http://skia.googlecode.com/svn/trunk@8994 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2013-05-03 18:11:00 +00:00
Родитель c9f81661c1
Коммит dc9cdf8d49
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -68,7 +68,11 @@ static void test_overflow(skiatest::Reporter* reporter) {
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));