aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorAikar <[email protected]>2020-04-09 20:45:38 -0400
committerAikar <[email protected]>2020-04-09 20:45:38 -0400
commit78431dcaef26b9812da032afc771f5acd2ad599d (patch)
tree7ff68585e9aada079e0fc3850db3f1d90f237416 /scripts
parentab74bb451405a9b9be4de7e28837f206721784ee (diff)
downloadPaper-78431dcaef26b9812da032afc771f5acd2ad599d.tar.gz
Paper-78431dcaef26b9812da032afc771f5acd2ad599d.zip
Update test server startup script
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/testServer.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/testServer.sh b/scripts/testServer.sh
index 98e8335daf..a6dea0e0db 100755
--- a/scripts/testServer.sh
+++ b/scripts/testServer.sh
@@ -86,13 +86,13 @@ fi
#
baseargs="-server -Xms${PAPER_MIN_TEST_MEMORY:-512M} -Xmx${PAPER_TEST_MEMORY:-2G} -Dfile.encoding=UTF-8 -XX:MaxGCPauseMillis=150 -XX:+UseG1GC "
-baseargs="$baseargs -DIReallyKnowWhatIAmDoingISwear=1 -XX:TargetSurvivorRatio=90 "
-baseargs="$baseargs -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=40 -XX:G1MaxNewSizePercent=80 "
-baseargs="$baseargs -XX:InitiatingHeapOccupancyPercent=10 -XX:G1MixedGCLiveThresholdPercent=20 "
+baseargs="$baseargs -DIReallyKnowWhatIAmDoingISwear=1 "
+baseargs="$baseargs -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=40 -XX:G1MaxNewSizePercent=60 "
+baseargs="$baseargs -XX:InitiatingHeapOccupancyPercent=10 -XX:G1MixedGCLiveThresholdPercent=80 "
baseargs="$baseargs -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5100"
-cmd="java ${PAPER_TEST_BASE_JVM_ARGS:-$baseargs} ${PAPER_TEST_EXTRA_JVM_ARGS} -jar $jar ${PAPER_TEST_APP_ARGS:-}"
+cmd="java ${PAPER_TEST_BASE_JVM_ARGS:-$baseargs} ${PAPER_TEST_EXTRA_JVM_ARGS} -jar $jar ${PAPER_TEST_APP_ARGS:-} nogui"
screen_command="screen -DURS papertest $cmd"
tmux_command="tmux new-session -A -s Paper -n 'Paper Test' -c '$(pwd)' '$cmd'"