summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2018-12-23 15:53:21 +0900
committerDavid Bremner <david@tethera.net>2018-12-23 16:02:50 +0900
commit9db600f58fda5c78969c1852eafba8a33196edd3 (patch)
treef3e84096e757ac6528d07dfbede4b70e85d6da16
parent43f037b1d475331a4b3a517df3d30b08378ba24b (diff)
don't remove smtp-response in authtest-smtp.sh
This seems racy as the 'rm' happens in a different process than the shell running the client side of the test. It also seems unneeded since each test in tests/smtp-auth overwrites that file
-rw-r--r--test/authtest-smtp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/authtest-smtp.sh b/test/authtest-smtp.sh
index 73df37c..fef010a 100644
--- a/test/authtest-smtp.sh
+++ b/test/authtest-smtp.sh
@@ -5,7 +5,7 @@ echo 250-AUTH PLAIN
echo 250 OK
read line
cat $1
-rm -f $1
+# rm -f $1
read line
echo 250 OK
read line