summaryrefslogtreecommitdiff
path: root/tests/u_mke2fs
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2008-07-13 08:03:20 -0400
committerTheodore Ts'o <tytso@mit.edu>2008-07-13 16:06:56 -0400
commit318824c1bb7b73edfe66ae4976676c37eacd0c58 (patch)
tree2bd99545835fd6be0ee6f33537c92735aa51932d /tests/u_mke2fs
parent3d05802f925239f516f05b048809281e9e13b3a2 (diff)
downloade2fsprogs-318824c1bb7b73edfe66ae4976676c37eacd0c58.tar.gz
Fix Solaris shell script portability issues
Solaris ships with a pathetically ancient shell in /bin/sh, so fix various shell scripts to accomodate. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'tests/u_mke2fs')
-rw-r--r--tests/u_mke2fs/script9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/u_mke2fs/script b/tests/u_mke2fs/script
index 671eace4..8d511597 100644
--- a/tests/u_mke2fs/script
+++ b/tests/u_mke2fs/script
@@ -1,7 +1,8 @@
printf "e2undo with mke2fs: "
if test -x $E2UNDO_EXE; then
-export E2FSPROGS_UNDO_DIR=./
+E2FSPROGS_UNDO_DIR=./
+export E2FSPROGS_UNDO_DIR
TDB_FILE=./mke2fs-test.img.e2undo
OUT=$test_name.log
rm -f $TDB_FILE >/dev/null 2>&1
@@ -10,16 +11,16 @@ dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1
echo mke2fs -q -F -o Linux -b 1024 test.img > $OUT
$MKE2FS -F -o Linux -I 128 -b 1024 $TMPFILE >> $OUT 2>&1
-md5=$(md5sum $TMPFILE | cut -d " " -f 1)
+md5=`md5sum $TMPFILE | cut -d " " -f 1`
echo md5sum before mke2fs $md5 >> $OUT
echo using mke2fs to test e2undo >> $OUT
$MKE2FS -q -F -o Linux -I 256 -O uninit_bg -E lazy_itable_init=1 -b 1024 $TMPFILE >> $OUT 2>&1
-new_md5=$(md5sum $TMPFILE | cut -d " " -f 1)
+new_md5=`md5sum $TMPFILE | cut -d " " -f 1`
echo md5sum after mke2fs $new_md5 >> $OUT
$E2UNDO_EXE $TDB_FILE $TMPFILE >> $OUT 2>&1
-new_md5=$(md5sum $TMPFILE | cut -d " " -f 1)
+new_md5=`md5sum $TMPFILE | cut -d " " -f 1`
echo md5sum after e2undo $new_md5 >> $OUT
if [ $md5 = $new_md5 ]; then