blob: 8dfb97a325c5934c129e50dcb0213cd7662f69ce (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | #!/bin/sh
tests=$1
norecompile=$2
if [[ $tests = "" ]]; then
  tests="all"
fi
if [[ $norecompile = "" ]]; then
  rake compile
fi
java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests" --config jsTestDriver-perf.conf
 |