From: alokbhagwat Date: Fri, 15 Nov 2002 15:40:02 +0000 (+0000) Subject: Modified to report to buffalo (Buffalized) X-Git-Tag: 0.5.17~4 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=ba4c08fc20f9865338cfaec447a8f3a4ef559e6e;p=fs%2Flustre-release.git Modified to report to buffalo (Buffalized) --- diff --git a/lustre/tests/acceptance-small.sh b/lustre/tests/acceptance-small.sh index acdb3aa..c2f4625 100755 --- a/lustre/tests/acceptance-small.sh +++ b/lustre/tests/acceptance-small.sh @@ -1,17 +1,27 @@ #!/bin/sh # script which _must_ complete successfully (at minimum) before checkins to # the CVS HEAD are allowed. -set -vxe +set -e + +. common.sh + +TESTDESC="Minimum Acceptance Test" +TESTNAME="acceptance-small" +TESTGROUP="correctness" +LVER="head" # This has to be made dynamic +NET="tcp" # This has to be made dynamic + +buffalo_init if [ "$LOCAL" != no ]; then export NAME=${LOCAL:-local} sh ${NAME}.sh - [ "$RUNTESTS" != "no" ] && sh runtests --reformat ${NAME}.xml + [ "$RUNTESTS" != "no" ] && start_test "runtests-local" && sh runtests --reformat ${NAME}.xml mount | grep lustre_lite || sh llmount.sh - [ "$SANITY" != "no" ] && sh sanity.sh - [ "$DBENCH" != "no" ] && sh rundbench 1 - [ "$BONNIE" != "no" ] && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre + [ "$SANITY" != "no" ] && start_test "sanity-local" && sh sanity.sh + [ "$DBENCH" != "no" ] && start_test "rundbench-local" && sh rundbench 1 + [ "$BONNIE" != "no" ] && start_test "bonnie-local" && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre sync; sync sh llmountcleanup.sh fi @@ -19,11 +29,11 @@ fi if [ "$LOV" != no ]; then export NAME=${LOV:-lov} sh ${NAME}.sh - [ "$RUNTESTS" != "no" ] && sh runtests --reformat ${NAME}.xml + [ "$RUNTESTS" != "no" ] && start_test "runtests-lov" && sh runtests --reformat ${NAME}.xml mount | grep lustre_lite || sh llmount.sh - [ "$SANITY" != "no" ] && sh sanity.sh - [ "$DBENCH" != "no" ] && sh rundbench 1 - [ "$BONNIE" != "no" ] && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre + [ "$SANITY" != "no" ] && start_test "sanity-lov" && sh sanity.sh + [ "$DBENCH" != "no" ] && start_test "rundbench-lov" && sh rundbench 1 + [ "$BONNIE" != "no" ] && start_test "bonnie-lov" && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre sync; sync sh llmountcleanup.sh fi