diff options
| author | J08nY | 2024-08-09 17:19:57 +0200 |
|---|---|---|
| committer | J08nY | 2024-08-09 17:19:57 +0200 |
| commit | c6b752a7a8980372ff6a5f49660f94d9495e5f33 (patch) | |
| tree | 3f88b7582579e9a6e8b2d6f466088c67a7dc6a1e | |
| parent | be605a27d095d95cfb477d339b1b6e698d83fa76 (diff) | |
| download | ECTester-c6b752a7a8980372ff6a5f49660f94d9495e5f33.tar.gz ECTester-c6b752a7a8980372ff6a5f49660f94d9495e5f33.tar.zst ECTester-c6b752a7a8980372ff6a5f49660f94d9495e5f33.zip | |
| -rw-r--r-- | standalone/src/test/java/cz/crcs/ectester/standalone/DeterministicTests.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/standalone/src/test/java/cz/crcs/ectester/standalone/DeterministicTests.java b/standalone/src/test/java/cz/crcs/ectester/standalone/DeterministicTests.java index e5caae8..5c7a21f 100644 --- a/standalone/src/test/java/cz/crcs/ectester/standalone/DeterministicTests.java +++ b/standalone/src/test/java/cz/crcs/ectester/standalone/DeterministicTests.java @@ -14,8 +14,9 @@ import static org.junit.jupiter.api.Assertions.assertEquals; public class DeterministicTests { static Stream<String> libs() { - return Stream.of("Botan", "BouncyCastle", "Crypto++", "IPPCP", "mbedTLS", "Nettle", "OpenSSL", "SunEC", "tomcrypt", "LibreSSL"); + return Stream.of("Botan", "BouncyCastle", "Crypto++", "IPPCP", "mbedTLS", "Nettle", "OpenSSL", "SunEC", "tomcrypt"); // BoringSSL and libgcrypt cannot be easily tested here, because they initialize their RNG only once per process. + // LibreSSL hangs in CI. } @SuppressWarnings("JUnitMalformedDeclaration") |
