diff options
author | Jim Meyering <jim@meyering.net> | 2007-08-29 00:17:27 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-08-29 00:17:27 +0200 |
commit | 58ddd2c5a1a80b1c3ef6d1717842d082d24409cf (patch) | |
tree | b299f57213e63b86d7ebd270b9881e6d6c3df2e3 /tests | |
parent | 35755454e45a6cbab4c711353131df483d89a979 (diff) | |
download | coreutils-58ddd2c5a1a80b1c3ef6d1717842d082d24409cf.tar.gz coreutils-58ddd2c5a1a80b1c3ef6d1717842d082d24409cf.tar.bz2 coreutils-58ddd2c5a1a80b1c3ef6d1717842d082d24409cf.zip |
Ensure that TMPDIR is valid. Otherwise, it would cause test failures.
* tests/misc/tty-eof: Set TMPDIR=.
* tests/misc/sort-compress: Likewise.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/sort-compress | 3 | ||||
-rwxr-xr-x | tests/misc/tty-eof | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/misc/sort-compress b/tests/misc/sort-compress index fe460bb1b..568bfa762 100755 --- a/tests/misc/sort-compress +++ b/tests/misc/sort-compress @@ -38,6 +38,9 @@ if test $framework_failure = 1; then (exit 1); exit 1 fi +# Ensure that $TMPDIR is valid. +TMPDIR=.; export TMPDIR + fail=0 # This should force the use of temp files compressed with the default gzip diff --git a/tests/misc/tty-eof b/tests/misc/tty-eof index 7567caa8c..8cd2921fc 100755 --- a/tests/misc/tty-eof +++ b/tests/misc/tty-eof @@ -25,6 +25,9 @@ $PERL -e 1 > /dev/null 2>&1 || { exit 77 } +# Ensure that $TMPDIR is valid. +TMPDIR=.; export TMPDIR + ARGV_0=$0 export ARGV_0 |