From c923f9fdfcf78fedf3e786cf00a45dcc94f6b791 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 15 Mar 2011 21:34:33 +0100 Subject: [PATCH] tests: Correctly handle cleanup of (temporary) files. --- tests/common.sh | 5 +++++ tests/tests-normal.sh | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/common.sh b/tests/common.sh index 05641db..e006698 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -16,6 +16,11 @@ # along with this program. If not, see . +cleanup() { + rm -f \ + certificate-localhost-proxy.pem certificate-localhost-server.pem \ + proxy-ca-key.pem proxy-ca.pem proxy-invalid.pem proxy-key.pem +} abort() { echo abort pkill -n gnutls-serv diff --git a/tests/tests-normal.sh b/tests/tests-normal.sh index 41b6e36..a8169dc 100755 --- a/tests/tests-normal.sh +++ b/tests/tests-normal.sh @@ -25,6 +25,7 @@ # Create necessary files. +cleanup $srcdir/../src/tlsproxy-setup >/dev/null 2>/dev/null # Normal tests. @@ -70,6 +71,7 @@ pkill -n gnutls-serv server --x509certfile $srcdir/server-bad.pem \ --x509keyfile $srcdir/server-key.pem sleep 1 +rm -f certificate-localhost-proxy.pem certificate-localhost-server.pem echo mitm invalid hostname @@ -105,8 +107,7 @@ test_invalid_certificate pkill -n gnutls-serv pkill -n tlsproxy -rm -f tmp \ - certificate-localhost-proxy.pem certificate-localhost-server.pem \ - proxy-ca-key.pem proxy-ca.pem proxy-invalid.pem proxy-key.pem +cleanup +rm -f tmp exit 0 -- 2.43.2