diff options
Diffstat (limited to 'eclipse-runTestBundles')
| -rwxr-xr-x | eclipse-runTestBundles | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/eclipse-runTestBundles b/eclipse-runTestBundles new file mode 100755 index 0000000..0dd9caa --- /dev/null +++ b/eclipse-runTestBundles @@ -0,0 +1,13 @@ +#! /bin/bash + +if [ ! $# -eq 1 ]; then + echo "USAGE : $0 PATH/TO/BUNDLES/DIRECTORY" + exit 1 +fi + +./prepRuntimeLocation.sh || exit 1 +./prepAllTestBundles.sh $1 || exit 1 + +pushd target + +./runtests.sh -os linux -ws gtk -arch `arch` |
