Don't register a trap to unlink $TMPFILE at the test exit if SKIP_UNLINK is set. Otherwise, this makes it difficult to debug a failing test. Signed-off-by: Andreas Dilger <adilger@xxxxxxxxx> --- 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 c1f18dc..664cf86 100644 --- a/tests/test_one.in +++ b/tests/test_one.in @@ -61,7 +61,7 @@ rm -f $test_name.ok $test_name.failed #echo -e -n "$test_name: $test_description:\r" TMPFILE=$(mktemp ${TMPDIR:-/tmp}/e2fsprogs-tmp-$test_name.XXXXXX) -trap 'rm -f $TMPFILE ; exit' 1 2 15 +[ "$SKIP_UNLINK" != "true" ] && trap 'rm -f $TMPFILE ; exit' 1 2 15 start=$SECONDS if [ -f $test_dir/script ]; then -- 1.8.0