summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-10-28 12:09:49 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-10-28 12:09:49 +0000
commitf388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7 (patch)
tree2a5770c3ca5f08410dd197035e3bae7a0b52ba23 /tools
parent4ddb4ce1e28afe15f9335a4bd51e07f68161b27c (diff)
downloadscala-f388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7.tar.gz
scala-f388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7.tar.bz2
scala-f388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7.zip
Mostly refactored existing test functionality f...
Mostly refactored existing test functionality for parallel collections. Added immutable hash set tests. No review.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/remotetest6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/remotetest b/tools/remotetest
index 1e81f7e2c3..262749c810 100755
--- a/tools/remotetest
+++ b/tools/remotetest
@@ -211,11 +211,13 @@ then
fi
# run the build and tests
+SET_ANT_OPTS='export ANT_OPTS="-XX:MaxPermSize=192M -Xmx1536m"; echo $ANT_OPTS'
+echo "Set ant options command: $SET_ANT_OPTS"
if [[ $LOGFILE != "" ]]
then
- ssh $USER@$LOCATION "cd $WORKREPO; ant test"
+ ssh $USER@$LOCATION "cd $WORKREPO; $SET_ANT_OPTS; ant test"
else
- ssh $USER@$LOCATION "cd $WORKREPO; ant test | tee -a $LOGFILE"
+ ssh $USER@$LOCATION "cd $WORKREPO; $SET_ANT_OPTS; ant test | tee -a $LOGFILE"
fi
success