Skip to content

Commit a530a51

Browse files
committed
Test smaller memory space
1 parent 3809e4b commit a530a51

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/integration_tests.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ function main() {
2424

2525
local wd launch_boot assemble_code integration_test_code
2626
wd=$(pwd)
27-
echo "Setting heap to ${jvm_heap:=1024m}"
27+
echo "Setting heap to ${jvm_heap:=768m}"
2828
echo "Setting metaspace to ${jvm_metaspace:=256m}"
2929

3030
readonly launch_boot="nohup java \
3131
-XX:+UseParallelGC \
32-
-Xms${jvm_heap} -Xmx${jvm_heap} \
32+
-Xmx${jvm_heap} \
3333
-XX:MaxMetaspaceSize=${jvm_metaspace} \
3434
-XX:+HeapDumpOnOutOfMemoryError \
3535
-XX:HeapDumpPath=${wd} \
@@ -81,9 +81,9 @@ function main() {
8181
cat boot.log
8282
exit 1
8383
fi
84-
84+
8585
eval "$integration_test_code"
86-
86+
8787
# Clean up: kill the boot server
8888
if [[ -f boot.pid ]]; then
8989
kill -9 "$(cat boot.pid)" || true

0 commit comments

Comments
 (0)