This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Retract #10324 and #10333; not needed.
[perl5.git] / t / op / glob.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6 }
7
8 print "1..7\n";
9
10 @oops = @ops = <op/*>;
11
12 if ($^O eq 'MSWin32') {
13   map { $files{lc($_)}++ } <op/*>;
14   map { delete $files{"op/$_"} } split /[\s\n]/, `cmd /c "dir /b /l op & dir /b /l /ah op 2>nul"`,
15 }
16 else {
17   map { $files{$_}++ } <op/*>;
18   map { delete $files{$_} } split /[\s\n]/, `echo op/*`;
19 }
20 if (keys %files) {
21         print "not ok 1\t(",join(' ', sort keys %files),"\n";
22 } else { print "ok 1\n"; }
23
24 print $/ eq "\n" ? "ok 2\n" : "not ok 2\n";
25
26 while (<jskdfjskdfj* op/* jskdjfjkosvk*>) {
27     $not = "not " unless $_ eq shift @ops;
28     $not = "not at all " if $/ eq "\0";
29 }
30 print "${not}ok 3\n";
31
32 print $/ eq "\n" ? "ok 4\n" : "not ok 4\n";
33
34 # test the "glob" operator
35 $_ = "op/*";
36 @glops = glob $_;
37 print "@glops" eq "@oops" ? "ok 5\n" : "not ok 5\n";
38
39 @glops = glob;
40 print "@glops" eq "@oops" ? "ok 6\n" : "not ok 6\n";
41
42 # glob should still work even after the File::Glob stash has gone away
43 # (this used to dump core)
44 my $i = 0;
45 for (1..2) {
46     eval "<.>";
47     undef %File::Glob::;
48     ++$i;
49 }
50 print $i == 2 ? "ok 7\n" : "not ok 7\n";