summaryrefslogtreecommitdiff
path: root/t/op/groups.t
diff options
context:
space:
mode:
authorTim Bunce <Tim.Bunce@ig.co.uk>1997-06-11 12:00:00 +1200
committerTim Bunce <Tim.Bunce@ig.co.uk>1997-06-11 12:00:00 +1200
commiteafe34533bc47b4a5b730970a1ec1bbe499ffe29 (patch)
tree2dc4388816d0f5af061f4458b8f27d0b4bb2ee09 /t/op/groups.t
parenta0edfb28dc9357a0d935edd85adcb8676114250e (diff)
downloadperl-eafe34533bc47b4a5b730970a1ec1bbe499ffe29.tar.gz
op/groups test fails on Linux (groups in /bin)
(this is the same change as commit 7b7ef14c26e3283cb33eb794bdf774867119ade0, but as applied)
Diffstat (limited to 't/op/groups.t')
-rwxr-xr-xt/op/groups.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/op/groups.t b/t/op/groups.t
index 078689b1c6..47aabe3d7b 100755
--- a/t/op/groups.t
+++ b/t/op/groups.t
@@ -1,6 +1,9 @@
#!./perl
-if (! -x ($groups = '/usr/ucb/groups') && ! -x ($groups = '/usr/bin/groups')) {
+if (! -x ($groups = '/usr/ucb/groups') &&
+ ! -x ($groups = '/usr/bin/groups') &&
+ ! -x ($groups = '/bin/groups')
+) {
print "1..0\n";
exit 0;
}