From 9eca59463196ff8638f32640df169dba05aa9a15 Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Fri, 26 May 2023 10:10:14 -0400 Subject: [PATCH] regression test fix --- test/script/regression.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/script/regression.py b/test/script/regression.py index e898bec3e5..89054fe019 100644 --- a/test/script/regression.py +++ b/test/script/regression.py @@ -464,6 +464,7 @@ class TestRunner(object): test_data.ant.append("regression-test") test_data.ant.append("-l") test_data.ant.append(test_data.antlog_dir) + test_data.ant.append("-J--add-opens=java.base/java.security=ALL-UNNAMED") test_data.ant.append("-Dimg_path=" + test_data.image_file) test_data.ant.append("-Dknown_bad_path=" + test_config.known_bad_path) test_data.ant.append("-Dkeyword_path=" + test_config.keyword_path)