]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/lei-daemon.t
lei: do not access {sock} after SIGPIPE
[public-inbox.git] / t / lei-daemon.t
index a7c4b7992a378e83aadf7548fe49dd8cde6fd9a2..b60c7ce6dc4aa8277219c10e33d676d9c39162bb 100644 (file)
@@ -3,7 +3,6 @@
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict; use v5.10.1; use PublicInbox::TestCommon;
 use Socket qw(AF_UNIX SOCK_SEQPACKET MSG_EOR pack_sockaddr_un);
-use PublicInbox::Spawn qw(which);
 
 test_lei({ daemon_only => 1 }, sub {
        my $send_cmd = PublicInbox::Spawn->can('send_cmd4') // do {
@@ -21,14 +20,9 @@ test_lei({ daemon_only => 1 }, sub {
        ok(kill(0, $pid), 'pid is valid');
        ok(-S $sock, 'sock created');
        is(-s $err_log, 0, 'nothing in errors.log');
-       open my $efh, '>>', $err_log or BAIL_OUT $!;
-       print $efh "phail\n" or BAIL_OUT $!;
-       close $efh or BAIL_OUT $!;
-
        lei_ok('daemon-pid');
        chomp(my $pid_again = $lei_out);
        is($pid, $pid_again, 'daemon-pid idempotent');
-       like($lei_err, qr/phail/, 'got mock "phail" error previous run');
 
        SKIP: {
                skip 'only testing open files on Linux', 1 if $^O ne 'linux';