From 136c42bf121185dd2cecd012fa614b24303b8497 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Tue, 11 Apr 2017 15:08:02 -0300 Subject: posix: Add cleanup on the trap list for globtest.sh This patch prevents lingering files for SIGSEGV failures by adding a cleanup handler on trap handler. Checked on x86_64-linux-gnu. * posix/globtest.sh: Add cleanup routine on trap 0. Cherry-pick of 4fee33f. --- ChangeLog | 4 ++++ posix/globtest.sh | 9 ++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index d040992f7e..e2ee9148d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2017-04-11 Adhemerval Zanella + + * posix/globtest.sh: Add cleanup routine on trap 0. + 2017-02-07 Adhemerval Zanella * malloc/arena.c (__malloc_fork_lock_parent): Add internal_function diff --git a/posix/globtest.sh b/posix/globtest.sh index 7c9f590167..f40350517b 100755 --- a/posix/globtest.sh +++ b/posix/globtest.sh @@ -47,7 +47,12 @@ testout=${common_objpfx}posix/globtest-out rm -rf $testdir $testout mkdir $testdir -trap 'chmod 777 $testdir/noread; rm -fr $testdir $testout' 1 2 3 15 +cleanup() { + chmod 777 $testdir/noread + rm -fr $testdir $testout +} + +trap cleanup 0 HUP INT QUIT TERM echo 1 > $testdir/file1 echo 2 > $testdir/file2 @@ -795,8 +800,6 @@ if test $failed -ne 0; then fi if test $result -eq 0; then - chmod 777 $testdir/noread - rm -fr $testdir $testout echo "All OK." > $logfile fi -- cgit 1.4.1