diff options
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; } |