X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Flei-daemon.t;h=b60c7ce6dc4aa8277219c10e33d676d9c39162bb;hb=69b5ab18a594fa434d79cacee35c4d9a0df7b55c;hp=a7c4b7992a378e83aadf7548fe49dd8cde6fd9a2;hpb=1d6e1f9a6a66a42d18f109aea406237cf8571597;p=public-inbox.git diff --git a/t/lei-daemon.t b/t/lei-daemon.t index a7c4b799..b60c7ce6 100644 --- a/t/lei-daemon.t +++ b/t/lei-daemon.t @@ -3,7 +3,6 @@ # License: AGPL-3.0+ 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';