Skip to content
Snippets Groups Projects
Commit 2cdef22b authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Revert buffalization of acceptance-small.sh in HEAD, that lives in ltest.

parent ba4c08fc
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
# script which _must_ complete successfully (at minimum) before checkins to # script which _must_ complete successfully (at minimum) before checkins to
# the CVS HEAD are allowed. # the CVS HEAD are allowed.
set -e set -vxe
. 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 if [ "$LOCAL" != no ]; then
export NAME=${LOCAL:-local} export NAME=${LOCAL:-local}
sh ${NAME}.sh sh ${NAME}.sh
[ "$RUNTESTS" != "no" ] && start_test "runtests-local" && sh runtests --reformat ${NAME}.xml [ "$RUNTESTS" != "no" ] && sh runtests --reformat ${NAME}.xml
mount | grep lustre_lite || sh llmount.sh mount | grep lustre_lite || sh llmount.sh
[ "$SANITY" != "no" ] && start_test "sanity-local" && sh sanity.sh [ "$SANITY" != "no" ] && sh sanity.sh
[ "$DBENCH" != "no" ] && start_test "rundbench-local" && sh rundbench 1 [ "$DBENCH" != "no" ] && sh rundbench 1
[ "$BONNIE" != "no" ] && start_test "bonnie-local" && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre [ "$BONNIE" != "no" ] && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre
sync; sync sync; sync
sh llmountcleanup.sh sh llmountcleanup.sh
fi fi
...@@ -29,11 +19,11 @@ fi ...@@ -29,11 +19,11 @@ fi
if [ "$LOV" != no ]; then if [ "$LOV" != no ]; then
export NAME=${LOV:-lov} export NAME=${LOV:-lov}
sh ${NAME}.sh sh ${NAME}.sh
[ "$RUNTESTS" != "no" ] && start_test "runtests-lov" && sh runtests --reformat ${NAME}.xml [ "$RUNTESTS" != "no" ] && sh runtests --reformat ${NAME}.xml
mount | grep lustre_lite || sh llmount.sh mount | grep lustre_lite || sh llmount.sh
[ "$SANITY" != "no" ] && start_test "sanity-lov" && sh sanity.sh [ "$SANITY" != "no" ] && sh sanity.sh
[ "$DBENCH" != "no" ] && start_test "rundbench-lov" && sh rundbench 1 [ "$DBENCH" != "no" ] && sh rundbench 1
[ "$BONNIE" != "no" ] && start_test "bonnie-lov" && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre [ "$BONNIE" != "no" ] && bonnie++ -s 0 -n 10 -u 0 -d /mnt/lustre
sync; sync sync; sync
sh llmountcleanup.sh sh llmountcleanup.sh
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment