8148638: test failure in test/java/util/concurrent/tck
Summary: temporarily comment out assertions for not-yet-merged changes
Reviewed-by: rriggs
--- 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());
}}