]> git.marmaro.de Git - mmh/commitdiff
futher test suite fixes to work on Solaris
authorOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 25 Apr 2012 15:40:09 +0000 (17:40 +0200)
committerOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 25 Apr 2012 15:40:09 +0000 (17:40 +0200)
test/common.sh.in
test/format/test-mymbox
test/inc/test-deb359167
test/inc/test-eom-align
test/mhparam/test-mhparam
test/post/test-post-common.sh
test/post/test-post-fcc

index 58297f099ccc6a243d5f0faf4c7b50020c6f27e0..84d08fcacc37f1452a3bbd7f3924b26ea634b120 100644 (file)
@@ -19,6 +19,7 @@ export MH_TEST_DIR auxexecdir bindir mandir sysconfdir pagerpath
 test -z "$MH_INST_DIR"  &&  MH_INST_DIR=${MH_TEST_DIR}/inst
 export MH_INST_DIR
 
+unset MHCONTEXT
 
 output_md5()
 {
@@ -68,7 +69,7 @@ findprog()
 
 require_prog ()
 {
-  if [ -z `findprog $1` ]; then
+  if [ -z "`findprog $1`" ]; then
     test_skip "missing $1"
   fi
 }
@@ -133,7 +134,7 @@ setup_test ()
   MHMTSCONF=${MH_INST_DIR}${sysconfdir}/mts.conf
   PATH=${MH_INST_DIR}${bindir}:${PATH}
   MH_LIB_DIR=${MH_INST_DIR}${auxexecdir}
-  export MH MHMTSCONF MH_LIB_DIR
+  export MH MHMTSCONF MH_LIB_DIR PATH
 
   #
   # Only install once
@@ -145,7 +146,7 @@ setup_test ()
   fi
 
   # clean old test data
-  trap "rm -rf $MH_TEST_DIR/Mail; exit \$status" 0
+  trap "rm -rf $MH_TEST_DIR/Mail" 0
   # setup test data
   mkdir $MH_TEST_DIR/Mail || exit 1
   cat > $MH <<EOF || exit 1
index ba0f70698a4859ceea8e0746b51450816bd34bc8..5a39d59f61959defbf1211fab885593a4a8d34e7 100755 (executable)
@@ -13,7 +13,7 @@ fi
 
 setup_test
 
-user=`id -un`
+user=${LOGNAME:-`id -un`}
 host=`${MH_OBJ_DIR}/test/getfqdn`
 
 run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) ${user}" \
index 85e45758e391c5cb1e7830e03117ba614e4b455b..92f4c61a97418b4fcab651dc65fbb61072befcf1 100755 (executable)
@@ -16,7 +16,7 @@ require_prog valgrind
 THISDIR="$srcdir/test/inc"
 TESTMBOX="$THISDIR/deb359167.mbox"
 
-if [ `output_md5 "$TESTMBOX"` != "e6ac458b8cccba2b2fd866fb505aeb5e" ]; then
+if [ "`output_md5 "$TESTMBOX"`" != "e6ac458b8cccba2b2fd866fb505aeb5e" ]; then
     echo "Test mailbox has been corrupted"
     exit 1
 fi
index c6e6225fb202ac7b50789ece4f87155296718b4f..5acdc0eb0897302136934fe4b9e3f7480733ddb6 100755 (executable)
@@ -38,7 +38,7 @@ FILLER="$THISDIR/filler.txt"
 FROMLINE="$THISDIR/fromline.txt"
 HDR="$THISDIR/msgheader.txt"
 
-if grep -q From "$FILLER"; then
+if grep From "$FILLER" >/dev/null; then
    echo "Somebody's messed with $FILLER -- it must not contain"
    echo "anything that might look like a message delimiter!"
    exit 1
@@ -51,8 +51,8 @@ fi
 # bigger as well.
 STDIO_BUFSZ=16384
 
-FROMLINESZ=`wc -c "$FROMLINE" | cut -d ' ' -f 1`
-HDRSZ=`wc -c "$HDR" | cut -d ' ' -f 1`
+FROMLINESZ=`wc -c < "$FROMLINE"`
+HDRSZ=`wc -c < "$HDR"`
 
 # makembox_A mboxname sz
 # Assemble a mailbox into file mboxname, with two messages, such
index 08aff2c8447f6adf83f9997e38de32079cb210c5..f8482774bc941091b6970799d1a3383b458bd20b 100755 (executable)
@@ -136,8 +136,7 @@ check $expected $actual
 run_test 'mhparam faceproc formatproc rmmproc' ''
 
 #### test sbackup separately because it's only passed as a -D compile option
-if mhparam sbackup | grep -F ',
-#' >/dev/null; then
+if mhparam sbackup | grep ',' >/dev/null; then
   :
 else
   echo mhparam sbackup failed
index e0eaa4ac0e1c634f9f747ff82efaea4b1b597e12..856c399f4e83751bec0a8ba91f553fa8ecba9b5e 100755 (executable)
@@ -37,9 +37,8 @@ test_post ()
     # compare it against our "correct" output.
     #
 
-    sed -i.bak -e 's/^Date:.*/Date:/' "$1"
-
-    rm -f "${1}.bak"
+    sed -e 's/^Date:.*/Date:/' "$1" > "$1".nodate
+    mv "$1".nodate "$1"
 
     check "$1" "$2"
 }
index 159823fad4addef4617fadda14db26cbab98c173..946969c9f9663327568f392e6e65805d0564797a 100755 (executable)
@@ -54,9 +54,8 @@ EOF
 
 msgname=`mhpath +inbox 11`
 
-sed -i.bak -e 's/^Date:.*/Date:/' "${msgname}"
-
-rm -f "${msgname}.bak"
+sed -e 's/^Date:.*/Date:/' "${msgname}" > "${msgname}".nodate
+mv "${msgname}".nodate "${msgname}"
 
 check "${testname}.msg.expected" "${msgname}"