Commit a9460b77 a9460b77406ed63f8d7c0034ee655be4760911a0 by Sergey Poznyakoff

Bugfix in the testsuite.

* testsuite/smtp-msg.at: Ignore output from kill.
* testsuite/smtp-str.at: Likewise.
1 parent a52e9228
...@@ -39,7 +39,7 @@ smtpsend localhost port=$2 \ ...@@ -39,7 +39,7 @@ smtpsend localhost port=$2 \
39 rcpt=gray@example.org\ 39 rcpt=gray@example.org\
40 domain=mailutils.org\ 40 domain=mailutils.org\
41 input=msg 41 input=msg
42 kill $1 42 kill $1 >/dev/null 2>&1
43 cat mta.diag 43 cat mta.diag
44 ], 44 ],
45 [0], 45 [0],
......
...@@ -40,7 +40,7 @@ smtpsend localhost port=$2 \ ...@@ -40,7 +40,7 @@ smtpsend localhost port=$2 \
40 domain=mailutils.org\ 40 domain=mailutils.org\
41 raw=1\ 41 raw=1\
42 input=msg 42 input=msg
43 kill $1 43 kill $1 >/dev/null 2>&1
44 cat mta.diag 44 cat mta.diag
45 ], 45 ],
46 [0], 46 [0],
......