From 03fdf30663a584b067cde177abf49dcc5556902a Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 10 Oct 2018 22:56:12 -0400 Subject: [PATCH] test_one: make sure the tmpfile is cleaned up if the test script exits f_detect_junk will skip the test by exiting; and in that case we need to make sure the test's tmpfile gets cleaned up. Signed-off-by: Theodore Ts'o --- tests/test_one.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_one.in b/tests/test_one.in index 7c5f464..5d7607a 100644 --- a/tests/test_one.in +++ b/tests/test_one.in @@ -61,7 +61,7 @@ rm -f $test_name.ok $test_name.failed $test_name.log $test_name.slow #echo -e -n "$test_name: $test_description:\r" TMPFILE=$(mktemp ${TMPDIR:-/tmp}/e2fsprogs-tmp-$test_name.XXXXXX) -[ "$SKIP_UNLINK" != "true" ] && trap 'rm -f $TMPFILE ; exit' 1 2 15 +[ "$SKIP_UNLINK" != "true" ] && trap 'rm -f $TMPFILE ; exit' 0 1 2 15 start=$SECONDS if [ -f $test_dir/script ]; then -- 1.8.3.1