This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Exact path to perl for open -|.
[perl5.git] / t / op / readdir.t
1 #!./perl
2
3 eval 'opendir(NOSUCH, "no/such/directory");';
4 if ($@) { print "1..0\n"; exit; }
5
6 print "1..3\n";
7
8 for $i (1..2000) {
9     local *OP;
10     opendir(OP, "op") or die "can't opendir: $!";
11     # should auto-closedir() here
12 }
13
14 if (opendir(OP, "op")) { print "ok 1\n"; } else { print "not ok 1\n"; }
15 @D = grep(/^[^\.].*\.t$/i, readdir(OP));
16 closedir(OP);
17
18 if (@D > 20 && @D < 100) { print "ok 2\n"; } else { print "not ok 2\n"; }
19
20 @R = sort @D;
21 @G = sort <op/*.t>;
22 if ($G[0] =~ m#.*\](\w+\.t)#i) {
23     # grep is to convert filespecs returned from glob under VMS to format
24     # identical to that returned by readdir
25     @G = grep(s#.*\](\w+\.t).*#op/$1#i,<op/*.t>);
26 }
27 while (@R && @G && "op/".$R[0] eq $G[0]) {
28         shift(@R);
29         shift(@G);
30 }
31 if (@R == 0 && @G == 0) { print "ok 3\n"; } else { print "not ok 3\n"; }