summaryrefslogtreecommitdiff
path: root/t/op/pwent.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-05-02 19:06:02 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-05-02 19:06:02 +0000
commit765e9edb2de192ef033766d867f9bd290e9935e9 (patch)
tree7b15efde52ca39c7b566f93b1af2e665a381bbd7 /t/op/pwent.t
parent5cdabb00637dac511820ef15cf49e86f5e883771 (diff)
downloadperl-765e9edb2de192ef033766d867f9bd290e9935e9.tar.gz
Test both the scalar and list contexts.
p4raw-id: //depot/cfgperl@6049
Diffstat (limited to 't/op/pwent.t')
-rwxr-xr-xt/op/pwent.t29
1 files changed, 27 insertions, 2 deletions
diff --git a/t/op/pwent.t b/t/op/pwent.t
index ca14a99eec..bb4b500fb4 100755
--- a/t/op/pwent.t
+++ b/t/op/pwent.t
@@ -55,9 +55,9 @@ BEGIN {
}
}
-# By now PW filehandle should be open and full of juicy password entries.
+# By now the PW filehandle should be open and full of juicy password entries.
-print "1..1\n";
+print "1..2\n";
# Go through at most this many users.
# (note that the first entry has been read away by now)
@@ -134,4 +134,29 @@ print "ok ", $tst++;
print "\t# (not necessarily serious: run t/op/pwent.t by itself)" if $not;
print "\n";
+# Test both the scalar and array contexts.
+
+my @pw1;
+
+endpwent();
+setpwent();
+for (1..$max) {
+ my $pw = scalar getpwent();
+ last unless defined $pw;
+ push @pw1, $pw;
+}
+
+my @pw2;
+
+endpwent();
+setpwent();
+for (1..$max) {
+ my ($pw) = (getpwent());
+ last unless defined $pw;
+ push @pw2, $pw;
+}
+
+print "not " unless "@pw1" eq "@pw2";
+print "ok ", $tst++, "\n";
+
close(PW);