Commit | Line | Data |
---|---|---|
988174c1 LW |
1 | #!./perl |
2 | ||
3 | eval 'opendir(NOSUCH, "no/such/directory");'; | |
4 | if ($@) { print "1..0\n"; exit; } | |
5 | ||
6 | print "1..3\n"; | |
7 | ||
1236053a GS |
8 | for $i (1..2000) { |
9 | local *OP; | |
10 | opendir(OP, "op") or die "can't opendir: $!"; | |
11 | # should auto-closedir() here | |
12 | } | |
13 | ||
988174c1 | 14 | if (opendir(OP, "op")) { print "ok 1\n"; } else { print "not ok 1\n"; } |
a0d0e21e | 15 | @D = grep(/^[^\.].*\.t$/i, readdir(OP)); |
988174c1 LW |
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; | |
2f52a358 | 21 | @G = sort <op/*.t>; |
a0d0e21e LW |
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 | } | |
988174c1 LW |
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"; } |