Disable failing TWR tests after update to JDK11

Bug: b/228587114
Change-Id: Ic039902f7a29a15fd88eff3562b10878b894bb66
diff --git a/src/test/java/com/android/tools/r8/desugar/suppressedexceptions/TwrSuppressedExceptionsTest.java b/src/test/java/com/android/tools/r8/desugar/suppressedexceptions/TwrSuppressedExceptionsTest.java
index e80af63..443c7ed 100644
--- a/src/test/java/com/android/tools/r8/desugar/suppressedexceptions/TwrSuppressedExceptionsTest.java
+++ b/src/test/java/com/android/tools/r8/desugar/suppressedexceptions/TwrSuppressedExceptionsTest.java
@@ -20,6 +20,7 @@
 import java.io.Closeable;
 import java.util.List;
 import java.util.stream.Collectors;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
@@ -58,6 +59,7 @@
   }
 
   @Test
+  @Ignore("b/228587114")
   public void testD8() throws Exception {
     testForDesugaring(parameters)
         .addProgramClasses(TestClass.class, MyClosable.class)
@@ -94,6 +96,7 @@
   }
 
   @Test
+  @Ignore("b/228587114")
   public void testR8() throws Exception {
     assumeTrue(
         "R8 does not desugar CF so only run the high API variant.",
diff --git a/src/test/java/com/android/tools/r8/desugar/twr/TwrCloseResourceDuplicationTest.java b/src/test/java/com/android/tools/r8/desugar/twr/TwrCloseResourceDuplicationTest.java
index 10d15e9..2bee502 100644
--- a/src/test/java/com/android/tools/r8/desugar/twr/TwrCloseResourceDuplicationTest.java
+++ b/src/test/java/com/android/tools/r8/desugar/twr/TwrCloseResourceDuplicationTest.java
@@ -16,6 +16,7 @@
 import java.io.IOException;
 import java.util.List;
 import java.util.jar.JarFile;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
@@ -67,6 +68,7 @@
   }
 
   @Test
+  @Ignore("b/228587114")
   public void testD8() throws Exception {
     testForD8(parameters.getBackend())
         .addInnerClasses(getClass())
@@ -89,6 +91,7 @@
   }
 
   @Test
+  @Ignore("b/228587114")
   public void testR8() throws Exception {
     assumeTrue(parameters.isDexRuntime());
     testForR8(parameters.getBackend())