diff options
| author | J08nY | 2024-08-07 22:52:45 +0200 |
|---|---|---|
| committer | J08nY | 2024-08-07 22:52:45 +0200 |
| commit | b6c35d175e5d71ec7e3840d984ff77840af9344e (patch) | |
| tree | e6c0828cc0362f6d0c43ad61612c4c4804f7f608 | |
| parent | 06fd1cee79c7587e08a3240992c58f7fb361d7fd (diff) | |
| download | ECTester-b6c35d175e5d71ec7e3840d984ff77840af9344e.tar.gz ECTester-b6c35d175e5d71ec7e3840d984ff77840af9344e.tar.zst ECTester-b6c35d175e5d71ec7e3840d984ff77840af9344e.zip | |
Continue on test errors.
| -rw-r--r-- | .github/workflows/build.yml | 2 | ||||
| -rw-r--r-- | standalone/src/main/java/cz/crcs/ectester/standalone/test/suites/StandalonePerformanceSuite.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b626eb0..de3f6cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -189,7 +189,7 @@ jobs: run: ./gradlew standalone:run --args="list-libs" - name: Test - run: ./gradlew standalone:test + run: ./gradlew standalone:test --continue - name: Upload build artifacts uses: actions/upload-artifact@v4 diff --git a/standalone/src/main/java/cz/crcs/ectester/standalone/test/suites/StandalonePerformanceSuite.java b/standalone/src/main/java/cz/crcs/ectester/standalone/test/suites/StandalonePerformanceSuite.java index 909b252..46e4141 100644 --- a/standalone/src/main/java/cz/crcs/ectester/standalone/test/suites/StandalonePerformanceSuite.java +++ b/standalone/src/main/java/cz/crcs/ectester/standalone/test/suites/StandalonePerformanceSuite.java @@ -38,9 +38,9 @@ public class StandalonePerformanceSuite extends StandaloneTestSuite { @Override protected void runTests() throws Exception { - String kpgAlgo = cli.getOptionValue("test.kpg-type"); - String kaAlgo = cli.getOptionValue("test.ka-type"); - String sigAlgo = cli.getOptionValue("test.sig-type"); + String kpgAlgo = cli.getOptionValue("test.kpg-type", "EC"); + String kaAlgo = cli.getOptionValue("test.ka-type", "ECDH"); + String sigAlgo = cli.getOptionValue("test.sig-type", "ECDSA"); String keyAlgo = cli.getOptionValue("test.key-type", "AES"); List<String> kpgTypes = kpgAlgo != null ? Arrays.asList(kpgAlgo.split(",")) : new ArrayList<>(); |
