about summary refs log tree commit homepage
path: root/t/httpd-corner.t
diff options
context:
space:
mode:
Diffstat (limited to 't/httpd-corner.t')
-rw-r--r--t/httpd-corner.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/httpd-corner.t b/t/httpd-corner.t
index 794d8aeb..296e1dc1 100644
--- a/t/httpd-corner.t
+++ b/t/httpd-corner.t
@@ -610,7 +610,8 @@ SKIP: {
         my $null_in = '';
         my $rdr = { 2 => \(my $null_err), 0 => \$null_in };
         my @lsof = xqx([$lsof, '-p', $td->{pid}], undef, $rdr);
-        is_deeply([grep(/\bdeleted\b/, @lsof)], [], 'no lingering deleted inputs');
+        my $d = [ grep(/\(deleted\)/, @lsof) ];
+        is_deeply($d, [], 'no lingering deleted inputs') or diag explain($d);
 
         # filter out pipes inherited from the parent
         my @this = xqx([$lsof, '-p', $$], undef, $rdr);