start working on tiger again

The tiger tests are a suite under development
that exercise many coincident edge cases.

This fixes the case when a duplicate point is not
ignored when the coincident span references the
primary point.

TBR=reed@google.com
BUG=skia:5131
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2239803002

Review-Url: https://codereview.chromium.org/2239803002
diff --git a/tests/PathOpsOpTest.cpp b/tests/PathOpsOpTest.cpp
index aba4e86..c01d221 100644
--- a/tests/PathOpsOpTest.cpp
+++ b/tests/PathOpsOpTest.cpp
@@ -7144,7 +7144,7 @@
 path.conicTo(SkBits2Float(0x68392d5b), SkBits2Float(0xf0682955), SkBits2Float(0x2a1f5b2d), SkBits2Float(0xef552a21), SkBits2Float(0x5b2d2a8c));  // 3.4979e+24f, -2.87402e+29f, 1.41537e-13f, -6.59712e+28f, 4.8742e+16f
 
     SkPath path2(path);
-    testPathOpFail(reporter, path1, path2, (SkPathOp) 0, filename);
+    testPathOpSkipAssert(reporter, path1, path2, (SkPathOp) 0, filename);
 }
 
 static void fuzz763_24(skiatest::Reporter* reporter, const char* filename) {
@@ -7197,8 +7197,8 @@
 }
 
 static struct TestDesc failTests[] = {
-    TEST(fuzz763_24),
     TEST(fuzz763_23),
+    TEST(fuzz763_24),
     TEST(fuzz763_22),
     TEST(fuzz763_21),
     TEST(fuzz763_20),