summaryrefslogtreecommitdiffstats
path: root/scripts/run_tests
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/run_tests')
-rwxr-xr-xscripts/run_tests28
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/run_tests b/scripts/run_tests
deleted file mode 100755
index 8e4d65e9f..000000000
--- a/scripts/run_tests
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-WAIT_FOR_RESULT='N'
-if [ $# -ge 1 ] ; then
- if [ "$1" = "--wait-on-beaker-job" ] ; then
- WAIT_FOR_RESULT="Y"
- else
- echo "Unrecognized option. Usage: ./runtests --wait-on-beaker-job(Optional)"
- fi
-fi
-COMPOSE_PWD=`dirname $0 | cd; pwd`
-
-TEST_PACKAGE=`cd $COMPOSE_PWD/../../package.tests; pwd`
-
-if [ ! -d $TEST_PACKAGE ] ; then
- echo "Cannot run tests on beaker. Please compose the test rpms."
- exit -1
-fi
-
-cd $TEST_PACKAGE
-
-bkr task-add *.rpm
-
-if [ "$WAIT_FOR_RESULT" = "Y" ] ; then
- bkr job-submit --wait *.xml
-else
- bkr job-submit *.xml
-fi