diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/op/groups.t | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/op/groups.t b/t/op/groups.t index 8c146499d2..64f6190446 100755 --- a/t/op/groups.t +++ b/t/op/groups.t @@ -10,6 +10,11 @@ sub quit { exit 0; } +unless (eval { getgrgid(0); 1 }) { + print "1..0 # Skip: getgrgid() not implemented\n"; + exit 0; +} + quit() if (($^O eq 'MSWin32' || $^O eq 'NetWare') or $^O =~ /lynxos/i); # We have to find a command that prints all (effective @@ -65,11 +70,6 @@ EOM quit(); } -unless (eval { getgrgid(0); 1 }) { - print "1..0 # Skip: getgrgid() not implemented\n"; - exit 0; -} - chomp($groups); print "# groups = $groups\n"; |