Demote the surrogate and non-character errors to warnings.
[p5sagit/p5-mst-13.2.git] / t / op / glob.t
CommitLineData
a687059c 1#!./perl
2
72b16652 3BEGIN {
4 chdir 't' if -d 't';
20822f61 5 @INC = '../lib';
72b16652 6}
a687059c 7
fe4a5e1f 8print "1..10\n";
a687059c 9
0a753a76 10@oops = @ops = <op/*>;
a687059c 11
68dc0745 12if ($^O eq 'MSWin32') {
3cd616b9 13 map { $files{lc($_)}++ } <op/*>;
6d0cc0d7 14 map { delete $files{"op/$_"} } split /[\s\n]/, `dir /b /l op & dir /b /l /ah op 2>nul`,
68dc0745 15}
0405c3f2 16elsif ($^O eq 'VMS') {
17 map { $files{lc($_)}++ } <[.op]*>;
18 map { s/;.*$//; delete $files{lc($_)}; } split /[\n]/, `directory/noheading/notrailing/versions=1 [.op]`,
19}
68dc0745 20else {
3cd616b9 21 map { $files{$_}++ } <op/*>;
68dc0745 22 map { delete $files{$_} } split /[\s\n]/, `echo op/*`;
23}
adbc4883 24if (keys %files) {
25 print "not ok 1\t(",join(' ', sort keys %files),"\n";
26} else { print "ok 1\n"; }
a687059c 27
28print $/ eq "\n" ? "ok 2\n" : "not ok 2\n";
29
fe14fcc3 30while (<jskdfjskdfj* op/* jskdjfjkosvk*>) {
a687059c 31 $not = "not " unless $_ eq shift @ops;
32 $not = "not at all " if $/ eq "\0";
33}
34print "${not}ok 3\n";
35
36print $/ eq "\n" ? "ok 4\n" : "not ok 4\n";
0a753a76 37
38# test the "glob" operator
39$_ = "op/*";
40@glops = glob $_;
41print "@glops" eq "@oops" ? "ok 5\n" : "not ok 5\n";
42
43@glops = glob;
44print "@glops" eq "@oops" ? "ok 6\n" : "not ok 6\n";
ba112943 45
46# glob should still work even after the File::Glob stash has gone away
47# (this used to dump core)
48my $i = 0;
49for (1..2) {
50 eval "<.>";
51 undef %File::Glob::;
52 ++$i;
53}
54print $i == 2 ? "ok 7\n" : "not ok 7\n";
fe4a5e1f 55
56# [ID 20010526.001] localized glob loses value when assigned to
57
58$j=1; %j=(a=>1); @j=(1); local *j=*j; *j = sub{};
59
60print $j == 1 ? "ok 8\n" : "not ok 8\n";
61print $j{a} == 1 ? "ok 9\n" : "not ok 9\n";
62print $j[0] == 1 ? "ok 10\n" : "not ok 10\n";