about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-09-03 08:54:20 +0000
committerEric Wong <e@80x24.org>2021-09-03 08:55:03 +0000
commit73740c9e97efdd98e87a1d52fc064bffe449be83 (patch)
treebe0d6bd5596a68f801d9b5715114bd6b0531ab5c /t
parent9b2c705f92a6baf33684aa0845dc5163ae31016e (diff)
downloadpublic-inbox-73740c9e97efdd98e87a1d52fc064bffe449be83.tar.gz
Dumping errors from the previous run can often get lost, so just
spew to syslog since it's a standard place to put errors that
don't make it to a client.  Note: we don't rely on $SIG{__WARN__}
since some of the Net:: stuff will write directly to STDERR
(as will external processes).
Diffstat (limited to 't')
-rw-r--r--t/lei-daemon.t5
1 files changed, 0 insertions, 5 deletions
diff --git a/t/lei-daemon.t b/t/lei-daemon.t
index a7c4b799..b0c94a87 100644
--- a/t/lei-daemon.t
+++ b/t/lei-daemon.t
@@ -21,14 +21,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';