diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | tests/misc/tac-continue | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2007-09-16 Jim Meyering <jim@meyering.net> + * tests/misc/tac-continue: Arrange to remove a temporary file. + * tests/check.mk (vc_exe_in_TESTS): Don't rely on the value of $(TESTS), so that "make check TESTS=test-name" works once again. diff --git a/tests/misc/tac-continue b/tests/misc/tac-continue index aa8f69d1e..0c1319404 100755 --- a/tests/misc/tac-continue +++ b/tests/misc/tac-continue @@ -38,8 +38,9 @@ if ! test -d "$FULL_PARTITION_TMPDIR"; then (exit 1); exit 1 fi - fp_tmp="$FULL_PARTITION_TMPDIR/tac-cont-$$" +cleanup_() { rm -f "$fp_tmp"; } + # Make sure we can create an empty file there (i.e. no shortage of inodes). if ! touch $fp_tmp; then echo "$0: $fp_tmp: cannot create empty file" 1>&2 |