Skip to content

Commit

Permalink
[Test] mute another test affected by JDK-8266279
Browse files Browse the repository at this point in the history
Issue is tracked at #72639
  • Loading branch information
ywangd committed May 6, 2021
1 parent f492bf1 commit 8d92af1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import com.google.common.jimfs.Configuration;
import com.google.common.jimfs.Jimfs;
import org.bouncycastle.asn1.DLTaggedObject;
import org.elasticsearch.bootstrap.JavaVersion;
import org.elasticsearch.core.internal.io.IOUtils;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.ASN1Sequence;
Expand Down Expand Up @@ -265,6 +266,8 @@ public void testGeneratingCsr() throws Exception {
}

public void testGeneratingSignedCertificates() throws Exception {
assumeFalse("JDK bug JDK-8266279, https://github.com/elastic/elasticsearch/issues/72639",
JavaVersion.current().compareTo(JavaVersion.parse("8")) == 0);
Path tempDir = initTempDir();
Path outputFile = tempDir.resolve("out.zip");
Path instanceFile = writeInstancesTo(tempDir.resolve("instances.yml"));
Expand Down

0 comments on commit 8d92af1

Please sign in to comment.