This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate with Sarathy; manual resolve on regcomp.c conflicts
[perl5.git] / t / op / readdir.t
CommitLineData
988174c1
LW
1#!./perl
2
72b16652
GS
3BEGIN {
4 chdir 't' if -d 't';
5 unshift @INC, '../lib';
6}
7
988174c1
LW
8eval 'opendir(NOSUCH, "no/such/directory");';
9if ($@) { print "1..0\n"; exit; }
10
11print "1..3\n";
12
1236053a
GS
13for $i (1..2000) {
14 local *OP;
15 opendir(OP, "op") or die "can't opendir: $!";
16 # should auto-closedir() here
17}
18
988174c1 19if (opendir(OP, "op")) { print "ok 1\n"; } else { print "not ok 1\n"; }
a0d0e21e 20@D = grep(/^[^\.].*\.t$/i, readdir(OP));
988174c1
LW
21closedir(OP);
22
23if (@D > 20 && @D < 100) { print "ok 2\n"; } else { print "not ok 2\n"; }
24
25@R = sort @D;
2f52a358 26@G = sort <op/*.t>;
a0d0e21e
LW
27if ($G[0] =~ m#.*\](\w+\.t)#i) {
28 # grep is to convert filespecs returned from glob under VMS to format
29 # identical to that returned by readdir
30 @G = grep(s#.*\](\w+\.t).*#op/$1#i,<op/*.t>);
31}
988174c1
LW
32while (@R && @G && "op/".$R[0] eq $G[0]) {
33 shift(@R);
34 shift(@G);
35}
36if (@R == 0 && @G == 0) { print "ok 3\n"; } else { print "not ok 3\n"; }