File: looptest.sh

package info (click to toggle)
jetty9 9.4.57-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,116 kB
  • sloc: java: 442,578; xml: 25,482; javascript: 1,039; sh: 908; jsp: 268; sql: 40; makefile: 16
file content (18 lines) | stat: -rwxr-xr-x 248 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

set

export PATH=$M3/bin:$PATH

mvn clean install -DskipTests

cd $MODULE

let count=0

while mvn $OPTS test -Dtest=$TESTNAME 2>&1 > target/lastbuild.log
do
    now=`date`
    echo "Test Run $count - $now" 
    let count=$count+1
done