From fe98d6a9851110cae8cc9a3547386770bc6d985c Mon Sep 17 00:00:00 2001 From: Karl Wright Date: Thu, 26 Apr 2018 11:27:52 -0400 Subject: [PATCH] Mark the failing random tests with AwaitsFix --- .../org/apache/lucene/spatial3d/geom/RandomGeoPolygonTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/RandomGeoPolygonTest.java b/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/RandomGeoPolygonTest.java index 25b518c3732..97829b85dfe 100644 --- a/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/RandomGeoPolygonTest.java +++ b/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/RandomGeoPolygonTest.java @@ -93,6 +93,7 @@ public class RandomGeoPolygonTest extends RandomGeo3dShapeGenerator { */ @Test @Repeat(iterations = 10) + @AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/LUCENE-8281") public void testCompareBigPolygons() { testComparePolygons(Math.PI); } @@ -103,6 +104,7 @@ public class RandomGeoPolygonTest extends RandomGeo3dShapeGenerator { */ @Test @Repeat(iterations = 10) + @AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/LUCENE-8281") public void testCompareSmallPolygons() { testComparePolygons(1e-4 * Math.PI); }