aboutsummaryrefslogtreecommitdiff
path: root/standalone/src
diff options
context:
space:
mode:
authorJ08nY2024-08-09 17:19:57 +0200
committerJ08nY2024-08-09 17:19:57 +0200
commitc6b752a7a8980372ff6a5f49660f94d9495e5f33 (patch)
tree3f88b7582579e9a6e8b2d6f466088c67a7dc6a1e /standalone/src
parentbe605a27d095d95cfb477d339b1b6e698d83fa76 (diff)
downloadECTester-c6b752a7a8980372ff6a5f49660f94d9495e5f33.tar.gz
ECTester-c6b752a7a8980372ff6a5f49660f94d9495e5f33.tar.zst
ECTester-c6b752a7a8980372ff6a5f49660f94d9495e5f33.zip
Diffstat (limited to 'standalone/src')
-rw-r--r--standalone/src/test/java/cz/crcs/ectester/standalone/DeterministicTests.java3
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")