Whamcloud - gitweb
LU-103 Add support for test groups.
authorRobert Read <rread@whamcloud.com>
Tue, 1 Mar 2011 00:46:16 +0000 (16:46 -0800)
committerOleg Drokin <green@whamcloud.com>
Tue, 8 Mar 2011 21:19:32 +0000 (13:19 -0800)
Added an -g GROUP_FILE option to auster. The tests listed in the
group file will be used instead of any passed on the command line. I also added
a couple of test-groups to get things started, although
I'm sure we'll want to refine these.

Took care of a few cleanups in run_suite as well.

Signed-off-by: Robert Read <rread@whamcloud.com>
Change-Id: I5000c2b95a6eb1a49f5305637d4b55de5edc6d5c
Reviewed-on: http://review.whamcloud.com/278
Tested-by: Hudson
Reviewed-by: Chris Gearing <chris@whamcloud.com>
Reviewed-by: Wei Liu <sarah@whamcloud.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
lustre/tests/Makefile.am
lustre/tests/auster
lustre/tests/maloo_upload.sh [changed mode: 0644->0755]
lustre/tests/test-groups/regression [new file with mode: 0644]
lustre/tests/test-groups/regression-mpi [new file with mode: 0644]

index c6cdc50..6ed4b5b 100644 (file)
@@ -27,6 +27,7 @@ noinst_SCRIPTS += lustre-rsync-test.sh ost-pools.sh rpc.sh yaml.sh liblustre.sh
 noinst_SCRIPTS += lnet-selftest.sh obdfilter-survey.sh mmp.sh
 noinst_SCRIPTS += sgpdd-survey.sh maloo_upload.sh auster
 nobase_noinst_SCRIPTS = cfg/local.sh
+nobase_noinst_SCRIPTS += test-groups/regression test-groups/regression-mpi
 nobase_noinst_SCRIPTS += acl/make-tree acl/run cfg/ncli.sh
 nobase_noinst_SCRIPTS += racer/dir_create.sh racer/file_create.sh racer/file_list.sh
 nobase_noinst_SCRIPTS += racer/file_rm.sh racer/racer.sh racer/file_concat.sh
index 21087e0..a59c6f4 100755 (executable)
@@ -20,6 +20,7 @@ Run Lustre regression tests suites.
       -d LOGDIR Top level directory for logs
       -D FULLLOGDIR Full directory for logs
       -f STR    Config name (cfg/<name>.sh)
+      -g GROUP  Test group file (Overrides tests listed on command line)
       -i N      Repeat tests N times (default 1). A new directory
                 will be created under LOGDIR for each iteration.
       -k        Don't stop when subtests fail
@@ -48,9 +49,9 @@ the default "local" configuration.
 
   auster -s sanity replay-single --except 70b
 
-Run test listed in batch-list 5 times  using large config.
+Run all tests in the regression group 5 times using large config.
 
-  auster -f large -r 5 -b batch-list
+  auster -f large -g test-groups/regression  -r 5 
 
 EOF
     exit
@@ -65,12 +66,13 @@ reformat=false
 test_logs_dir=/tmp/test_logs/$(date +%Y-%m-%d)/$(date +%H%M%S)
 export SLOW=no
 export ${NAME:=local}
-while getopts "c:d:D:nkf:i:rRslhv" opt
+while getopts "c:d:D:nkf:g:i:rRslhv" opt
 do
     case "$opt" in
        c) CONFIG=$OPTARG;;
        d) test_logs_dir=$OPTARG/$(date +%Y-%m-%d)/$(date +%H%M%S);;
        D) test_logs_dir=$OPTARG;;
+       g) test_group_file=$OPTARG;;
        k) export FAIL_ON_ERROR=false;;
         n) dry_run=:;;
         v) verbose=:;;
@@ -83,7 +85,14 @@ do
         h|\?) usage;;
     esac
 done
-shift $((OPTIND -1))
+
+# If a test_group_file is specified, then ignore rest of command line
+if [[ $test_group_file ]]; then
+    export TEST_GROUP=$(basename $test_group_file)
+    set $(sed 's/#.*$//' $test_group_file)
+else
+    shift $((OPTIND -1))
+fi
 
 #
 # Various paramters for the tests scripts
@@ -183,12 +192,12 @@ doit() {
 run_suite() {
     suite_name=$1
     suite_script=$2
-    only=$3
     title $suite_name
     log_test $suite_name
 
+    rm -f $TF_FAIL
     local start_ts=$(date +%s)
-    doit bash $suite_script $only
+    doit bash $suite_script
     rc=$?
     duration=$(($(date +%s) - $start_ts))
     if [ -f $TF_FAIL -o $rc -ne 0 ]; then
@@ -204,7 +213,6 @@ run_suite() {
 run_suite_logged() {
     local suite_name=${1%.sh}
     local suite=$(echo ${suite_name} | tr "[:lower:]-" "[:upper:]_")
-    local suite_only=${suite}_ONLY
 
     suite_script=$(find_script_in_path $suite_name $PATH:$LUSTRE/tests)
 
@@ -213,12 +221,12 @@ run_suite_logged() {
         return 1
     fi
     
-    echo "run_suite $suite_name $suite_script ${!suite_only}"
+    echo "run_suite $suite_name $suite_script"
     local log_name=${suite_name}.suite_log.$(hostname).log
     if $verbose; then
-       run_suite $suite_name $suite_script "${!suite_only}" 2>&1 |tee  $LOGDIR/$log_name
+       run_suite $suite_name $suite_script 2>&1 |tee  $LOGDIR/$log_name
     else
-       run_suite $suite_name $suite_script "${!suite_only}"  > $LOGDIR/$log_name 2>&1
+       run_suite $suite_name $suite_script > $LOGDIR/$log_name 2>&1
     fi
 
 }
@@ -309,6 +317,7 @@ assert_env mds_HOST MDS_MKFS_OPTS
 assert_env ost_HOST OST_MKFS_OPTS OSTCOUNT
 assert_env FSNAME MOUNT MOUNT2
 
+echo "Started at `date`"
 setup_if_needed
 
 run_suites "$@"
old mode 100644 (file)
new mode 100755 (executable)
diff --git a/lustre/tests/test-groups/regression b/lustre/tests/test-groups/regression
new file mode 100644 (file)
index 0000000..849ee8a
--- /dev/null
@@ -0,0 +1,23 @@
+sanity
+metadata-updates
+sanity-benchmark
+sanityn
+lfsck
+liblustre
+runracer
+replay-single
+conf-sanity
+recovery-small
+replay-ost-single
+replay-dual
+replay-vbr
+insanity
+sanity-quota
+sanity-sec
+sanity-gss
+lustre_rsync-test
+ost-pools
+lnet-selftest
+mmp
+obdfilter-survey
+sgpdd-survey
diff --git a/lustre/tests/test-groups/regression-mpi b/lustre/tests/test-groups/regression-mpi
new file mode 100644 (file)
index 0000000..fd44302
--- /dev/null
@@ -0,0 +1,3 @@
+performance-sanity
+large-scale
+parallel-scale