summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-11-29 23:35:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-11-29 23:35:50 +0000
commit87cfc387a12aa6d69540adfec3c0fdfbcea8ac7c (patch)
treef42e50a281444c026439ab653c3813c687c08056 /t
parentce2ea7c0d40d68e601b09fe811be9f3a503c6d8f (diff)
parent521ee3dcbbd276cdce57b5fbdebcaaeb63e0b086 (diff)
downloadperl-87cfc387a12aa6d69540adfec3c0fdfbcea8ac7c.tar.gz
integrate cfgperl changes into mainline
p4raw-id: //depot/perl@2403
Diffstat (limited to 't')
-rwxr-xr-xt/op/grent.t4
-rwxr-xr-xt/op/pwent.t4
2 files changed, 4 insertions, 4 deletions
diff --git a/t/op/grent.t b/t/op/grent.t
index cfd0fadf01..d054ccc2b9 100755
--- a/t/op/grent.t
+++ b/t/op/grent.t
@@ -9,9 +9,9 @@ BEGIN {
$where = $GR;
- if (-x "/usr/bin/nidump") {
+ if (-x "/usr/bin/nidump") { # nidump is not just NeXT/OpenStep
if (open(GR, "nidump group . |")) {
- $where = "NetInfo";
+ $where = "NetInfo group";
} else {
print "1..0\n";
exit 0;
diff --git a/t/op/pwent.t b/t/op/pwent.t
index 4316b17028..d562ec3fc4 100755
--- a/t/op/pwent.t
+++ b/t/op/pwent.t
@@ -9,9 +9,9 @@ BEGIN {
$where = $PW;
- if (-x "/usr/bin/nidump") {
+ if (-x "/usr/bin/nidump") { # nidump is not just NeXT/OpenStep
if (open(PW, "nidump passwd . |")) {
- $where = "NetInfo";
+ $where = "NetInfo passwd";
} else {
print "1..0\n";
exit 0;