diff options
author | Jim Meyering <meyering@redhat.com> | 2010-04-24 15:50:41 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-04-24 15:50:41 +0200 |
commit | 301c74865ef13a11e303a2320743b2997bb568e7 (patch) | |
tree | 14eb140063bb4f4b9f9275044bce0e81156dfd8e /tests | |
parent | 765d67410c9907629b5c0ce3e37dd0a86a7fc25a (diff) | |
download | coreutils-301c74865ef13a11e303a2320743b2997bb568e7.tar.xz |
tests: clean up also upon SIGQUIT
* tests/test-lib.sh: Also trap on SIGQUIT.
Spotted by Dmitry V. Levin.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-lib.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-lib.sh b/tests/test-lib.sh index 8bf5601e5..a62857bdb 100644 --- a/tests/test-lib.sh +++ b/tests/test-lib.sh @@ -410,6 +410,7 @@ remove_tmp_() trap remove_tmp_ 0 trap 'Exit 129' 1 trap 'Exit 130' 2 +trap 'Exit 131' 3 trap 'Exit 141' 13 trap 'Exit 143' 15 |