An attempt to automatically make binaries executables - not successful but the code...
[jabaws.git] / runtests.sh
1 #!/bin/bash
2
3 #JAVA=/sw/java/latest/bin/java; export JAVA;
4 JAVA_HOME=/sw/java/latest; export JAVA_HOME;
5 ANT_HOME=/sw/java/ant; export ANT_HOME;
6 ANT=/sw/java/ant/bin/ant; export ANT;
7
8 # Re-Run tests run which was last run in IDE 
9 #$ANT -f build.xml CustomTest
10
11 # Excludes cluster dependent and non-windows machine tests, 
12 # so can be safely run from the development environment 
13 #$ANT -f build.xml All_cluster_independent_windows_only_tests
14
15 # For re-running failed tests
16 #$ANT -f build.xml Rerun_failed_tests
17
18 # For running cluster dependent tests
19 #$ANT -f build.xml Run_cluster_dependent_test
20
21 # For running ALL tests
22 $ANT -f build.xml Test