From e1d3b8beca2295ab9040a502c122e4a82f50d15d Mon Sep 17 00:00:00 2001 From: Iain Douglas Date: Dec 02 2012 12:28:05 +0000 Subject: Fixed a problem with -N -n tests caused by the TZ variable not being exported --- diff --git a/tests/p_gzip/20-gzip-test b/tests/p_gzip/20-gzip-test index 7214c31..a8df5d5 100755 --- a/tests/p_gzip/20-gzip-test +++ b/tests/p_gzip/20-gzip-test @@ -101,7 +101,7 @@ gzip -lv $FILE | grep -q "d14bbb86" || ExitFail t_Log "check -n and -N work correctly" TZ_SAVE=$TZ -TZ=UTC +export TZ=UTC gunzip $FILE.gz ls -l --time-style=+"%F %R" $FILE | grep -q '2010-11-22 13:11' && ExitFail @@ -117,7 +117,7 @@ cp ./tests/p_gzip/gzip-test.txt.gz /var/tmp/gzip-test.txt.1.gz # The file should gunzip with it's original name and timestamp. gunzip -f -N $FILE.1.gz ls -l $FILE --time-style=+"%F %R" | grep -q '2010-11-22 13:11' || ExitFail -TZ=$TZ_SAVE +export TZ=$TZ_SAVE # Check that -t works and detects a damaged file t_Log "Check -t can detect a corrupt file" gzip $FILE