e2e: also trap ERR

This commit is contained in:
Tim Hockin 2022-07-13 09:44:11 -07:00
parent c62f6cb833
commit 48b006568d
1 changed files with 2 additions and 2 deletions

View File

@ -2251,7 +2251,7 @@ make test-tools REGISTRY=e2e
function finish() {
r=$?
trap "" INT EXIT
trap "" INT EXIT ERR
if [[ $r != 0 ]]; then
echo
echo "the directory $DIR was not removed as it contains"\
@ -2260,7 +2260,7 @@ function finish() {
remove_containers
exit $r
}
trap finish INT EXIT
trap finish INT EXIT ERR
echo
echo "test root is $DIR"