diff options
author | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-06-11 12:00:00 +1200 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-06-11 12:00:00 +1200 |
commit | eafe34533bc47b4a5b730970a1ec1bbe499ffe29 (patch) | |
tree | 2dc4388816d0f5af061f4458b8f27d0b4bb2ee09 /t/op/groups.t | |
parent | a0edfb28dc9357a0d935edd85adcb8676114250e (diff) | |
download | perl-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-x | t/op/groups.t | 5 |
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; } |