awips2/tests/runTests.sh
Steve Harris 2487a8b435 13.5.1-4 baseline
Former-commit-id: e197f23ce3 [formerly 70e4ff30a6 [formerly d18b403b332dff67d1c85d4317bbceda337d1b41]]
Former-commit-id: 70e4ff30a6
Former-commit-id: c56be8a332
2013-06-28 09:46:25 -04:00

14 lines
271 B
Bash

#!/bin/sh
if [ "${INITIAL_PERMGEN_SIZE}" = "" ]
then
export INITIAL_PERMGEN_SIZE="64m"
fi
if [ "${MAX_PERMGEN_SIZE}" = "" ]
then
export MAX_PERMGEN_SIZE="192m"
fi
export ANT_OPTS="-XX:PermSize=${INITIAL_PERMGEN_SIZE} -XX:MaxPermSize=${MAX_PERMGEN_SIZE} $*"
ant