Index: tests/PDFPrimitivesTest.cpp |
diff --git a/tests/PDFPrimitivesTest.cpp b/tests/PDFPrimitivesTest.cpp |
index 9b9569d3675c9a70d8cc5761e2a577354c653c2c..5f0750d77a177a40c87bd6d6f6d59412f5482163 100644 |
--- a/tests/PDFPrimitivesTest.cpp |
+++ b/tests/PDFPrimitivesTest.cpp |
@@ -353,7 +353,6 @@ DEF_TEST(PDFPrimitives, reporter) { |
SkAutoTUnref<SkPDFScalar> realHalf(new SkPDFScalar(SK_ScalarHalf)); |
SimpleCheckObjectOutput(reporter, realHalf.get(), "0.5"); |
-#if defined(SK_SCALAR_IS_FLOAT) |
SkAutoTUnref<SkPDFScalar> bigScalar(new SkPDFScalar(110999.75f)); |
#if !defined(SK_ALLOW_LARGE_PDF_SCALARS) |
SimpleCheckObjectOutput(reporter, bigScalar.get(), "111000"); |
@@ -366,7 +365,6 @@ DEF_TEST(PDFPrimitives, reporter) { |
SkAutoTUnref<SkPDFScalar> smallestScalar(new SkPDFScalar(1.0/65536)); |
SimpleCheckObjectOutput(reporter, smallestScalar.get(), "0.00001526"); |
#endif |
-#endif |
SkAutoTUnref<SkPDFString> stringSimple( |
new SkPDFString("test ) string ( foo")); |