diff mail_error_log.t @ 1856:ce4a06d72256

Tests: SIGPIPE handling in mail tests. In contrast to http tests, mail tests generally do not try to handle SIGPIPE when writing to a socket, and instead rely on $SIG{PIPE} being set at the start of the test (see 96:ecff5407867c). Fixed some tests which don't do this.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 18 May 2023 18:06:59 +0300
parents 74986ebee2fd
children 38f1fd9ca3e6
line wrap: on
line diff
--- a/mail_error_log.t	Thu May 11 15:29:41 2023 +0400
+++ b/mail_error_log.t	Thu May 18 18:06:59 2023 +0300
@@ -26,6 +26,8 @@
 select STDERR; $| = 1;
 select STDOUT; $| = 1;
 
+local $SIG{PIPE} = 'IGNORE';
+
 plan(skip_all => 'win32') if $^O eq 'MSWin32';
 
 my $t = Test::Nginx->new()->has(qw/mail imap http rewrite/);