Skip to content
Snippets Groups Projects
Commit e694d7cf authored by Elena Gryaznova's avatar Elena Gryaznova
Browse files

b=12499

i=Adilger
i=Shadow

s/sh/bash/ cleanup
parent e24c63ca
No related merge requests found
...@@ -70,14 +70,14 @@ for NAME in $CONFIGS; do ...@@ -70,14 +70,14 @@ for NAME in $CONFIGS; do
if [ "$RUNTESTS" != "no" ]; then if [ "$RUNTESTS" != "no" ]; then
title runtests title runtests
sh runtests bash runtests
$CLEANUP $CLEANUP
$SETUP $SETUP
fi fi
if [ "$SANITY" != "no" ]; then if [ "$SANITY" != "no" ]; then
title sanity title sanity
SANITYLOG=/tmp/sanity.log sh sanity.sh SANITYLOG=/tmp/sanity.log bash sanity.sh
$CLEANUP $CLEANUP
$SETUP $SETUP
fi fi
...@@ -90,13 +90,13 @@ for NAME in $CONFIGS; do ...@@ -90,13 +90,13 @@ for NAME in $CONFIGS; do
[ $THREADS -lt $DB_THREADS ] && DB_THREADS=$THREADS [ $THREADS -lt $DB_THREADS ] && DB_THREADS=$THREADS
$DEBUG_OFF $DEBUG_OFF
sh rundbench 1 bash rundbench 1
$DEBUG_ON $DEBUG_ON
$CLEANUP $CLEANUP
$SETUP $SETUP
if [ $DB_THREADS -gt 1 ]; then if [ $DB_THREADS -gt 1 ]; then
$DEBUG_OFF $DEBUG_OFF
sh rundbench $DB_THREADS bash rundbench $DB_THREADS
$DEBUG_ON $DEBUG_ON
$CLEANUP $CLEANUP
$SETUP $SETUP
...@@ -190,7 +190,7 @@ for NAME in $CONFIGS; do ...@@ -190,7 +190,7 @@ for NAME in $CONFIGS; do
mkdir -p $MOUNT2 mkdir -p $MOUNT2
mount_client $MOUNT2 mount_client $MOUNT2
#echo "can't mount2 for '$NAME', skipping sanityN.sh" #echo "can't mount2 for '$NAME', skipping sanityN.sh"
SANITYLOG=$TMP/sanity.log START=: CLEAN=: sh sanityN.sh SANITYLOG=$TMP/sanity.log START=: CLEAN=: bash sanityN.sh
umount $MOUNT2 umount $MOUNT2
$DEBUG_ON $DEBUG_ON
...@@ -204,7 +204,7 @@ for NAME in $CONFIGS; do ...@@ -204,7 +204,7 @@ for NAME in $CONFIGS; do
if grep -q obdfilter /proc/fs/lustre/devices; then if grep -q obdfilter /proc/fs/lustre/devices; then
if [ `echo $E2VER | cut -d. -f2` -ge 39 ] && \ if [ `echo $E2VER | cut -d. -f2` -ge 39 ] && \
[ "`echo $E2VER | grep cfs`" ]; then [ "`echo $E2VER | grep cfs`" ]; then
sh lfscktest.sh bash lfscktest.sh
else else
e2fsck -V e2fsck -V
echo "e2fsck does not support lfsck, skipping" echo "e2fsck does not support lfsck, skipping"
...@@ -239,37 +239,37 @@ done ...@@ -239,37 +239,37 @@ done
if [ "$REPLAY_SINGLE" != "no" ]; then if [ "$REPLAY_SINGLE" != "no" ]; then
title replay-single title replay-single
sh replay-single.sh bash replay-single.sh
fi fi
if [ "$CONF_SANITY" != "no" ]; then if [ "$CONF_SANITY" != "no" ]; then
title conf-sanity title conf-sanity
sh conf-sanity.sh bash conf-sanity.sh
fi fi
if [ "$RECOVERY_SMALL" != "no" ]; then if [ "$RECOVERY_SMALL" != "no" ]; then
title recovery-small title recovery-small
sh recovery-small.sh bash recovery-small.sh
fi fi
if [ "$REPLAY_OST_SINGLE" != "no" ]; then if [ "$REPLAY_OST_SINGLE" != "no" ]; then
title replay-ost-single title replay-ost-single
sh replay-ost-single.sh bash replay-ost-single.sh
fi fi
if [ "$REPLAY_DUAL" != "no" ]; then if [ "$REPLAY_DUAL" != "no" ]; then
title replay-dual title replay-dual
sh replay-dual.sh bash replay-dual.sh
fi fi
if [ "$INSANITY" != "no" ]; then if [ "$INSANITY" != "no" ]; then
title insanity title insanity
sh insanity.sh -r bash insanity.sh -r
fi fi
if [ "$SANITY_QUOTA" != "no" ]; then if [ "$SANITY_QUOTA" != "no" ]; then
title sanity-quota title sanity-quota
sh sanity-quota.sh bash sanity-quota.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