From 912c9ec6ee8e28724861f0ac2b746e970895f745 Mon Sep 17 00:00:00 2001 From: caryclark Date: Thu, 13 Nov 2014 11:08:52 -0800 Subject: disable a couple of new fuzz378 tests on android these tests fail on a nexus 9 in release only. It's probably related to the fused multiply-add instruction TBR= Review URL: https://codereview.chromium.org/722303002 --- tests/PathOpsFuzz763Test.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tests/PathOpsFuzz763Test.cpp') diff --git a/tests/PathOpsFuzz763Test.cpp b/tests/PathOpsFuzz763Test.cpp index b8562a4001..02519ae670 100755 --- a/tests/PathOpsFuzz763Test.cpp +++ b/tests/PathOpsFuzz763Test.cpp @@ -121,6 +121,11 @@ path.close(); } static void fuzz763_378(skiatest::Reporter* reporter, const char* filename) { +#if SK_BUILD_FOR_ANDROID + if (!FLAGS_runFail) { + return; // fails on nexus 9 in release, possibly related to fused multiply-add + } +#endif SkPath path; path.setFillType((SkPath::FillType) 1); path.moveTo(SkBits2Float(0x41013776), SkBits2Float(0xc25007a8)); @@ -214,6 +219,11 @@ path.close(); } static void fuzz763_378b(skiatest::Reporter* reporter, const char* filename) { +#if SK_BUILD_FOR_ANDROID + if (!FLAGS_runFail) { + return; // fails on nexus 9 in release, possibly related to fused multiply-add + } +#endif SkPath path; path.setFillType((SkPath::FillType) 1); path.moveTo(-47.1494f, 4.35143f); -- cgit v1.2.3