Test hex('x...').
[p5sagit/p5-mst-13.2.git] / t / op / readdir.t
CommitLineData
988174c1 1#!./perl
2
3eval 'opendir(NOSUCH, "no/such/directory");';
4if ($@) { print "1..0\n"; exit; }
5
6print "1..3\n";
7
1236053a 8for $i (1..2000) {
9 local *OP;
10 opendir(OP, "op") or die "can't opendir: $!";
11 # should auto-closedir() here
12}
13
988174c1 14if (opendir(OP, "op")) { print "ok 1\n"; } else { print "not ok 1\n"; }
a0d0e21e 15@D = grep(/^[^\.].*\.t$/i, readdir(OP));
988174c1 16closedir(OP);
17
18if (@D > 20 && @D < 100) { print "ok 2\n"; } else { print "not ok 2\n"; }
19
20@R = sort @D;
2f52a358 21@G = sort <op/*.t>;
a0d0e21e 22if ($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}
988174c1 27while (@R && @G && "op/".$R[0] eq $G[0]) {
28 shift(@R);
29 shift(@G);
30}
31if (@R == 0 && @G == 0) { print "ok 3\n"; } else { print "not ok 3\n"; }