From dbab4177534fa8c674a0294d0400b8fa59630d6d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 16 Sep 2007 11:26:24 +0200 Subject: [PATCH] tests/misc/tac-continue: Arrange to remove a temporary file. Signed-off-by: Jim Meyering --- ChangeLog | 2 ++ tests/misc/tac-continue | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 097c2b4..e1f850e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2007-09-16 Jim Meyering + * 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 aa8f69d..0c13194 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 -- 2.7.4