From 8ffb62c8ff7373aa898878535b6c5265d00dd33f Mon Sep 17 00:00:00 2001 From: Ioanna Kokkini Date: Wed, 10 Apr 2024 11:57:34 +0100 Subject: [PATCH] Remove unecessary java options from test settings This is not needed anymore, the Concurrent Mark and Sweep (CMS) has been deprecated and we should not use it anymore, see https://openjdk.org/jeps/291 Co-authored-by: Co-authored-by: Mariot Chauvin --- project/ProjectSettings.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/project/ProjectSettings.scala b/project/ProjectSettings.scala index 1bbb00fd3c2..945b120b0d9 100644 --- a/project/ProjectSettings.scala +++ b/project/ProjectSettings.scala @@ -77,7 +77,6 @@ object ProjectSettings { // These settings are needed for forking, which in turn is needed for concurrent restrictions. Test / javaOptions += "-DAPP_SECRET=this_is_not_a_real_secret_just_for_tests", Test / javaOptions += "-Xmx2048M", - Test / javaOptions += "-XX:+UseConcMarkSweepGC", Test / javaOptions += "-XX:ReservedCodeCacheSize=128m", Test / baseDirectory := file("."), Test / envVars := Map("STAGE" -> testStage),