| Index: tests/PathOpsFuzz763Test.cpp
|
| diff --git a/tests/PathOpsFuzz763Test.cpp b/tests/PathOpsFuzz763Test.cpp
|
| index b8562a4001f7b27e718445bc825cedce6986155b..02519ae67049773caac54dea2e47e7fbab8d529f 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);
|
|
|