diff options
| author | J08nY | 2024-03-28 17:37:06 +0100 |
|---|---|---|
| committer | J08nY | 2024-03-28 17:37:06 +0100 |
| commit | 59bcf047d2e141a2175aeaeb5bee3e9ce3e4d6ee (patch) | |
| tree | a462bd5303dd399c5c1504d218c9c3b9bf78e365 /standalone/build.gradle.kts | |
| parent | 6cadd538804714c0e12c18a4fc483452b978aaad (diff) | |
| download | ECTester-59bcf047d2e141a2175aeaeb5bee3e9ce3e4d6ee.tar.gz ECTester-59bcf047d2e141a2175aeaeb5bee3e9ce3e4d6ee.tar.zst ECTester-59bcf047d2e141a2175aeaeb5bee3e9ce3e4d6ee.zip | |
Add test-vector suite to tests.
Diffstat (limited to 'standalone/build.gradle.kts')
| -rw-r--r-- | standalone/build.gradle.kts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/standalone/build.gradle.kts b/standalone/build.gradle.kts index c3c4b9a..5edeb04 100644 --- a/standalone/build.gradle.kts +++ b/standalone/build.gradle.kts @@ -38,6 +38,9 @@ tasks.named<Test>("test") { useJUnitPlatform() // Report is always generated after tests run finalizedBy(tasks.jacocoTestReport) + jvmArgs( + "--add-exports", "jdk.crypto.ec/sun.security.ec=ALL-UNNAMED" + ) // Add wolfcrypt JNI lib path to LD_LIBRARY_PATH (as our native library loading does not handle it) environment( "LD_LIBRARY_PATH", "$rootDir/ext/wolfcrypt-jni/lib/:" + System.getenv("LD_LIBRARY_PATH") |
