From 9d36eca70a458c736e44fd8eb9184415ec45f1e6 Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Wed, 25 Jan 2012 13:59:36 +0530 Subject: system_light: changes to have modularity in running tests Till now this script allowed running all the tools (or exit for the first failure). Running individual tools was not possible. Now individual tools can be given as an argument to run. Change-Id: Ia133943667ad4dc30956f4a021f2edfc30458cee Signed-off-by: Raghavendra Bhat --- sanity/system_light/config | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sanity/system_light/config') diff --git a/sanity/system_light/config b/sanity/system_light/config index 3acde78..91422eb 100755 --- a/sanity/system_light/config +++ b/sanity/system_light/config @@ -13,6 +13,7 @@ export LOG_FILE="$TMP/time$$.log" export TEST_DIR=$PWD export DECISION="n" export TYPE="other" +export TEST="all" while getopts 'w:t:l:D' option do @@ -26,9 +27,12 @@ do D) DECISION="$OPTARG" ;; - t) + m) TYPE="$OPTARG" ;; + t) + TEST="$OPTARG" + ;; esac done -- cgit