summaryrefslogtreecommitdiffstats
path: root/scripts/run_tests
diff options
context:
space:
mode:
authorAbhishek Koneru <akoneru@redhat.com>2013-11-20 02:24:38 -0500
committerAbhishek Koneru <akoneru@redhat.com>2013-11-20 16:15:56 -0500
commit9c2f7724c2a50246ad73796edfda0917a2aaefe3 (patch)
tree7d5637b2e8fccd9863c9323a6753f828f586bf90 /scripts/run_tests
parent24727d1b096cd30f7474ca9c03fa9c1be04be0cd (diff)
Maintain seperate scripts for task and jobxml creation.
The compose script for creating the test rpm and submitting the job is broken into two scripts, one for creating the test rpm and one for creating the job xml. CI Test Framework
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