about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/lei-daemon.t9
1 files changed, 0 insertions, 9 deletions
diff --git a/t/lei-daemon.t b/t/lei-daemon.t
index 84e2791d..a7c4b799 100644
--- a/t/lei-daemon.t
+++ b/t/lei-daemon.t
@@ -73,15 +73,6 @@ test_lei({ daemon_only => 1 }, sub {
         lei_ok('daemon-pid');
         chomp $lei_out;
         is($lei_out, $new_pid, 'PID unchanged after -0/-CHLD');
-
-        SKIP: { # socket inaccessible
-                skip "cannot test connect EPERM as root", 3 if $> == 0;
-                chmod 0000, $sock or BAIL_OUT "chmod 0000: $!";
-                lei_ok('help', \'connect fail, one-shot fallback works');
-                like($lei_err, qr/\bconnect\(/, 'connect error noted');
-                like($lei_out, qr/^usage: /, 'help output works');
-                chmod 0700, $sock or BAIL_OUT "chmod 0700: $!";
-        }
         unlink $sock or BAIL_OUT "unlink($sock) $!";
         for (0..100) {
                 kill('CHLD', $new_pid) or last;