Skip to content

Commit 9a655b5

Browse files
committed
[Test] mute another test affected by JDK-8266279
Issue is tracked at #72639
1 parent cadd1a6 commit 9a655b5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

x-pack/plugin/security/cli/src/test/java/org/elasticsearch/xpack/security/cli/CertificateGenerateToolTests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import com.google.common.jimfs.Configuration;
1010
import com.google.common.jimfs.Jimfs;
1111
import org.bouncycastle.asn1.DLTaggedObject;
12+
import org.elasticsearch.bootstrap.JavaVersion;
1213
import org.elasticsearch.core.internal.io.IOUtils;
1314
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
1415
import org.bouncycastle.asn1.ASN1Sequence;
@@ -265,6 +266,8 @@ public void testGeneratingCsr() throws Exception {
265266
}
266267

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

0 commit comments

Comments
 (0)