This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate mainline
[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..9\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]/, `dir /b /l op & dir /b /l /ah op 2>nul`,
15 }
16 elsif ($^O eq 'VMS') {
17   map { $files{lc($_)}++ } <[.op]*>;
18   map { s/;.*$//; delete $files{lc($_)}; } split /[\n]/, `directory/noheading/notrailing/versions=1 [.op]`,
19 }
20 else {
21   map { $files{$_}++ } <op/*>;
22   map { delete $files{$_} } split /[\s\n]/, `echo op/*`;
23 }
24 if (keys %files) {
25         print "not ok 1\t(",join(' ', sort keys %files),"\n";
26 } else { print "ok 1\n"; }
27
28 print $/ eq "\n" ? "ok 2\n" : "not ok 2\n";
29
30 while (<jskdfjskdfj* op/* jskdjfjkosvk*>) {
31     $not = "not " unless $_ eq shift @ops;
32     $not = "not at all " if $/ eq "\0";
33 }
34 print "${not}ok 3\n";
35
36 print $/ eq "\n" ? "ok 4\n" : "not ok 4\n";
37
38 # test the "glob" operator
39 $_ = "op/*";
40 @glops = glob $_;
41 print "@glops" eq "@oops" ? "ok 5\n" : "not ok 5\n";
42
43 @glops = glob;
44 print "@glops" eq "@oops" ? "ok 6\n" : "not ok 6\n";
45
46 # glob should still work even after the File::Glob stash has gone away
47 # (this used to dump core)
48 my $i = 0;
49 for (1..2) {
50     eval "<.>";
51     undef %File::Glob::;
52     ++$i;
53 }
54 print $i == 2 ? "ok 7\n" : "not ok 7\n";
55
56 # ... while ($var = glob(...)) should test definedness not truth
57
58 my $ok = "not ok 8\n";
59 $ok = "ok 8\n" while my $var = glob("0");
60 print $ok;
61
62 # The formerly-broken test for the situation above would accidentally
63 # test definedness for an assignment with a LOGOP on the right:
64 my $f=0;
65 $ok="ok 9\n";
66 $ok="not ok 9\n", undef $f while $x = $f||$f;
67 print $ok