summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2018-12-23 16:06:50 +0900
committerDavid Bremner <david@tethera.net>2018-12-23 16:06:50 +0900
commitabab2205db979ea3be69f184f2277acfc9d96572 (patch)
treefc41bd704accd0dad68303566323de8a72f4eac7
parent6d1fb10a06e9757f02006348b6afaccaef083b9a (diff)
Commit patch queue (exported by git-debrebase)debian/1%2.2-2archive/debian/1%2.2-2
[git-debrebase make-patches: export and commit patches]
-rw-r--r--debian/patches/0007-don-t-remove-smtp-response-in-authtest-smtp.sh.patch24
-rw-r--r--debian/patches/series1
2 files changed, 25 insertions, 0 deletions
diff --git a/debian/patches/0007-don-t-remove-smtp-response-in-authtest-smtp.sh.patch b/debian/patches/0007-don-t-remove-smtp-response-in-authtest-smtp.sh.patch
new file mode 100644
index 0000000..98bb748
--- /dev/null
+++ b/debian/patches/0007-don-t-remove-smtp-response-in-authtest-smtp.sh.patch
@@ -0,0 +1,24 @@
+From: David Bremner <david@tethera.net>
+Date: Sun, 23 Dec 2018 15:53:21 +0900
+Subject: 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
+---
+ test/authtest-smtp.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+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
diff --git a/debian/patches/series b/debian/patches/series
index 66ca97d..6f5a90f 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,3 +4,4 @@
0005-Provide-for-etc-mailname.patch
0006-Refer-to-manpages-and-locations-provided-by-Debian.patch
0006-Disable-DNS-using-test.patch
+0007-don-t-remove-smtp-response-in-authtest-smtp.sh.patch