8148638: test failure in test/java/util/concurrent/tck
authormartin
Fri, 29 Jan 2016 13:57:38 -0800
changeset 35397 2b1273aea1b8
parent 35396 c58a744d0bb4
child 35398 e65d11da9bc9
8148638: test failure in test/java/util/concurrent/tck Summary: temporarily comment out assertions for not-yet-merged changes Reviewed-by: rriggs
jdk/test/java/util/concurrent/tck/CompletableFutureTest.java
--- a/jdk/test/java/util/concurrent/tck/CompletableFutureTest.java	Fri Jan 29 11:49:37 2016 -0800
+++ b/jdk/test/java/util/concurrent/tck/CompletableFutureTest.java	Fri Jan 29 13:57:38 2016 -0800
@@ -1067,10 +1067,11 @@
 
         checkCompletedWithWrappedException(g, ex1);
         checkCompletedExceptionally(f, ex1);
-        if (testImplementationDetails) {
-            assertEquals(1, ex1.getSuppressed().length);
-            assertSame(ex2, ex1.getSuppressed()[0]);
-        }
+        // oops... temporarily disabled
+//         if (testImplementationDetails) {
+//             assertEquals(1, ex1.getSuppressed().length);
+//             assertSame(ex2, ex1.getSuppressed()[0]);
+//         }
         assertEquals(1, a.get());
     }}