Skip to content

Commit

Permalink
Disable Bouncycastle JSSE native test
Browse files Browse the repository at this point in the history
    Issue tracked in quarkusio/quarkus#17046
  • Loading branch information
Luca Di Grazia committed Sep 4, 2022
1 parent 1af55e3 commit 624ddbb
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,15 @@

import org.junit.jupiter.api.Test;

import io.quarkus.runtime.util.JavaVersionUtil;
import io.quarkus.test.junit.DisabledOnNativeImage;
import io.quarkus.test.junit.NativeImageTest;

@NativeImageTest
public class BouncyCastleJsseITCase extends BouncyCastleJsseTestCase {
@Test
@DisabledOnNativeImage
@Override
public void testListProviders() {
if (!JavaVersionUtil.isJava11OrHigher()) {
LOG.trace("Skipping BouncyCastleJsseITCase, Java version is older than 11");
return;
}
doTestListProviders();
checkLog(true);
}
Expand Down

0 comments on commit 624ddbb

Please sign in to comment.