Numerous new testcases from Larry Doolittle and a patch to tester.sh to avoid

a bash2-ism and quote variables that contain strings.
This commit is contained in:
Mark Whitley
2001-05-24 17:15:33 +00:00
parent a813afc24f
commit 04052f96e1
3 changed files with 99 additions and 38 deletions

View File

@@ -87,7 +87,7 @@ unalias -a # gets rid of aliases that might create different output
# do extra setup (if any)
if [ ! -z $SETUP ]
if [ ! -z "$SETUP" ]
then
[ $DEBUG -ge 2 ] && echo "running setup commands in $SETUP"
source $SETUP
@@ -120,8 +120,12 @@ do
# change line to include "busybox" before every statement
line="$BUSYBOX $line"
line=${line//;/; $BUSYBOX }
line=${line//|/| $BUSYBOX }
# is this a bash-2-ism?
# line=${line//;/; $BUSYBOX }
# line=${line//|/| $BUSYBOX }
# assume $BUSYBOX has no commas
line=`echo $line | sed -e 's,;,; '$BUSYBOX, \
-e 's,|,| '$BUSYBOX,`
# execute line using busybox programs
[ $DEBUG -ge 2 ] && echo "testing: $line" | tee -a $LOGFILE
@@ -143,11 +147,11 @@ done
# do normal cleanup
[ $KEEPTMPFILES == "no" ] && rm -f $BB_OUT $GNU_OUT
[ "$KEEPTMPFILES" = "no" ] && rm -f $BB_OUT $GNU_OUT
# do extra cleanup (if any)
if [ ! -z $CLEANUP ]
if [ ! -z "$CLEANUP" ]
then
[ $DEBUG -ge 2 ] && echo "running cleanup commands in $CLEANUP"
source $CLEANUP