Merge branch 'feature/looptest' into jetty-9.3.x

This commit is contained in:
Joakim Erdfelt 2016-06-06 07:02:25 -07:00
commit 6e3d85e15e
1 changed files with 4 additions and 2 deletions

View File

@ -2,15 +2,17 @@
set
export PATH=$M3/bin:$PATH
mvn clean install -DskipTests
cd $MODULE
let count=0
while mvn test -Dtest=$TESTNAME -Dorg.eclipse.jetty.LEVEL=DEBUG 2>&1 > target/lastbuild.log
while mvn $OPTS test -Dtest=$TESTNAME 2>&1 > target/lastbuild.log
do
now=`date`
echo "Test Run $count - $now" >> target/looptest.log
echo "Test Run $count - $now"
let count=$count+1
done