This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Users don't normally care about the blead releases
[perl5.git] / t / test.pl
CommitLineData
69026470 1#
f69d9fdf
KW
2# t/test.pl - most of Test::More functionality without the fuss, plus
3# has mappings native_to_latin1 and latin1_to_native so that fewer tests
4# on non ASCII-ish platforms need to be skipped
485f531e
DL
5
6
7# NOTE:
8#
9# Increment ($x++) has a certain amount of cleverness for things like
10#
11# $x = 'zz';
12# $x++; # $x eq 'aaa';
69026470 13#
485f531e
DL
14# stands more chance of breaking than just a simple
15#
16# $x = $x + 1
17#
18# In this file, we use the latter "Baby Perl" approach, and increment
19# will be worked over by t/op/inc.t
69026470 20
dcc7f481 21$Level = 1;
69026470
JH
22my $test = 1;
23my $planned;
6137113d 24my $noplan;
5fe9b82b 25my $Perl; # Safer version of $^X set by which_perl()
69026470 26
7d932aad 27$TODO = 0;
b6345914 28$NO_ENDING = 0;
7d932aad 29
3d66076a
MS
30# Use this instead of print to avoid interference while testing globals.
31sub _print {
32 local($\, $", $,) = (undef, ' ', '');
33 print STDOUT @_;
34}
35
36sub _print_stderr {
37 local($\, $", $,) = (undef, ' ', '');
38 print STDERR @_;
39}
40
69026470
JH
41sub plan {
42 my $n;
43 if (@_ == 1) {
44 $n = shift;
6137113d
NC
45 if ($n eq 'no_plan') {
46 undef $n;
47 $noplan = 1;
48 }
69026470
JH
49 } else {
50 my %plan = @_;
8210c8d3 51 $n = $plan{tests};
69026470 52 }
3d66076a 53 _print "1..$n\n" unless $noplan;
69026470
JH
54 $planned = $n;
55}
56
c4ef7183
MS
57
58# Set the plan at the end. See Test::More::done_testing.
59sub done_testing {
60 my $n = $test - 1;
61 $n = shift if @_;
62
63 _print "1..$n\n";
64 $planned = $n;
65}
66
67
69026470
JH
68END {
69 my $ran = $test - 1;
6137113d
NC
70 if (!$NO_ENDING) {
71 if (defined $planned && $planned != $ran) {
3d66076a 72 _print_stderr
6137113d
NC
73 "# Looks like you planned $planned tests but ran $ran.\n";
74 } elsif ($noplan) {
3d66076a 75 _print "1..$ran\n";
6137113d 76 }
69026470
JH
77 }
78}
79
de522f7a 80sub _diag {
cf8feb78 81 return unless @_;
92c9394b 82 my @mess = _comment(@_);
44826442 83 $TODO ? _print(@mess) : _print_stderr(@mess);
de522f7a
MS
84}
85
92c9394b
MS
86# Use this instead of "print STDERR" when outputing failure diagnostic
87# messages
485f531e
DL
88sub diag {
89 _diag(@_);
90}
91
92c9394b
MS
92# Use this instead of "print" when outputing informational messages
93sub note {
94 return unless @_;
95 _print( _comment(@_) );
96}
97
98sub _comment {
99 return map { /^#/ ? "$_\n" : "# $_\n" }
100 map { split /\n/ } @_;
101}
102
69026470
JH
103sub skip_all {
104 if (@_) {
7bb7fa38 105 _print "1..0 # Skip @_\n";
69026470 106 } else {
3d66076a 107 _print "1..0\n";
69026470
JH
108 }
109 exit(0);
110}
111
112sub _ok {
7d932aad 113 my ($pass, $where, $name, @mess) = @_;
69026470
JH
114 # Do not try to microoptimize by factoring out the "not ".
115 # VMS will avenge.
7d932aad
MS
116 my $out;
117 if ($name) {
b734d6c9
MS
118 # escape out '#' or it will interfere with '# skip' and such
119 $name =~ s/#/\\#/g;
7d932aad 120 $out = $pass ? "ok $test - $name" : "not ok $test - $name";
69026470 121 } else {
7d932aad 122 $out = $pass ? "ok $test" : "not ok $test";
69026470 123 }
7d932aad 124
11ea18f2 125 $out = $out . " # TODO $TODO" if $TODO;
3d66076a 126 _print "$out\n";
7d932aad 127
69026470 128 unless ($pass) {
de522f7a 129 _diag "# Failed $where\n";
69026470 130 }
7d932aad
MS
131
132 # Ensure that the message is properly escaped.
cf8feb78 133 _diag @mess;
7d932aad 134
485f531e 135 $test = $test + 1; # don't use ++
1577bb16
MS
136
137 return $pass;
69026470
JH
138}
139
140sub _where {
dcc7f481 141 my @caller = caller($Level);
69026470
JH
142 return "at $caller[1] line $caller[2]";
143}
144
1d662fb6 145# DON'T use this for matches. Use like() instead.
c3029c66 146sub ok ($@) {
7d932aad
MS
147 my ($pass, $name, @mess) = @_;
148 _ok($pass, _where(), $name, @mess);
69026470
JH
149}
150
b3c72391
JH
151sub _q {
152 my $x = shift;
153 return 'undef' unless defined $x;
154 my $q = $x;
d279d8f8
NC
155 $q =~ s/\\/\\\\/g;
156 $q =~ s/'/\\'/g;
b3c72391
JH
157 return "'$q'";
158}
159
677fb045
NC
160sub _qq {
161 my $x = shift;
162 return defined $x ? '"' . display ($x) . '"' : 'undef';
163};
164
165# keys are the codes \n etc map to, values are 2 char strings such as \n
166my %backslash_escape;
167foreach my $x (split //, 'nrtfa\\\'"') {
168 $backslash_escape{ord eval "\"\\$x\""} = "\\$x";
169}
170# A way to display scalars containing control characters and Unicode.
171# Trying to avoid setting $_, or relying on local $_ to work.
172sub display {
173 my @result;
174 foreach my $x (@_) {
175 if (defined $x and not ref $x) {
176 my $y = '';
177 foreach my $c (unpack("U*", $x)) {
178 if ($c > 255) {
11ea18f2 179 $y = $y . sprintf "\\x{%x}", $c;
677fb045 180 } elsif ($backslash_escape{$c}) {
11ea18f2 181 $y = $y . $backslash_escape{$c};
677fb045
NC
182 } else {
183 my $z = chr $c; # Maybe we can get away with a literal...
1cfccccd
KW
184 if ($z =~ /[[:^print:]]/) {
185
186 # Use octal for characters traditionally expressed as
187 # such: the low controls
188 if ($c <= 037) {
189 $z = sprintf "\\%03o", $c;
190 } else {
191 $z = sprintf "\\x{%x}", $c;
192 }
193 }
11ea18f2 194 $y = $y . $z;
677fb045
NC
195 }
196 }
197 $x = $y;
198 }
199 return $x unless wantarray;
200 push @result, $x;
201 }
202 return @result;
203}
204
c3029c66 205sub is ($$@) {
7d932aad 206 my ($got, $expected, $name, @mess) = @_;
c831d34f
MS
207
208 my $pass;
209 if( !defined $got || !defined $expected ) {
210 # undef only matches undef
211 $pass = !defined $got && !defined $expected;
212 }
213 else {
214 $pass = $got eq $expected;
215 }
216
69026470 217 unless ($pass) {
d5f8084a
KW
218 unshift(@mess, "# got "._qq($got)."\n",
219 "# expected "._qq($expected)."\n");
69026470 220 }
7d932aad 221 _ok($pass, _where(), $name, @mess);
69026470
JH
222}
223
c3029c66 224sub isnt ($$@) {
3e90d5a3 225 my ($got, $isnt, $name, @mess) = @_;
c831d34f
MS
226
227 my $pass;
228 if( !defined $got || !defined $isnt ) {
229 # undef only matches undef
230 $pass = defined $got || defined $isnt;
231 }
232 else {
233 $pass = $got ne $isnt;
234 }
235
3e90d5a3 236 unless( $pass ) {
d5f8084a 237 unshift(@mess, "# it should not be "._qq($got)."\n",
3e90d5a3
MS
238 "# but it is.\n");
239 }
240 _ok($pass, _where(), $name, @mess);
241}
242
c3029c66 243sub cmp_ok ($$$@) {
58d76dfd
JH
244 my($got, $type, $expected, $name, @mess) = @_;
245
246 my $pass;
247 {
248 local $^W = 0;
249 local($@,$!); # don't interfere with $@
250 # eval() sometimes resets $!
251 $pass = eval "\$got $type \$expected";
252 }
253 unless ($pass) {
254 # It seems Irix long doubles can have 2147483648 and 2147483648
255 # that stringify to the same thing but are acutally numerically
256 # different. Display the numbers if $type isn't a string operator,
257 # and the numbers are stringwise the same.
258 # (all string operators have alphabetic names, so tr/a-z// is true)
259 # This will also show numbers for some uneeded cases, but will
260 # definately be helpful for things such as == and <= that fail
261 if ($got eq $expected and $type !~ tr/a-z//) {
262 unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n";
263 }
d5f8084a
KW
264 unshift(@mess, "# got "._qq($got)."\n",
265 "# expected $type "._qq($expected)."\n");
58d76dfd
JH
266 }
267 _ok($pass, _where(), $name, @mess);
268}
269
270# Check that $got is within $range of $expected
271# if $range is 0, then check it's exact
272# else if $expected is 0, then $range is an absolute value
273# otherwise $range is a fractional error.
274# Here $range must be numeric, >= 0
275# Non numeric ranges might be a useful future extension. (eg %)
c3029c66 276sub within ($$$@) {
58d76dfd
JH
277 my ($got, $expected, $range, $name, @mess) = @_;
278 my $pass;
279 if (!defined $got or !defined $expected or !defined $range) {
280 # This is a fail, but doesn't need extra diagnostics
281 } elsif ($got !~ tr/0-9// or $expected !~ tr/0-9// or $range !~ tr/0-9//) {
282 # This is a fail
283 unshift @mess, "# got, expected and range must be numeric\n";
284 } elsif ($range < 0) {
285 # This is also a fail
286 unshift @mess, "# range must not be negative\n";
287 } elsif ($range == 0) {
288 # Within 0 is ==
289 $pass = $got == $expected;
290 } elsif ($expected == 0) {
291 # If expected is 0, treat range as absolute
292 $pass = ($got <= $range) && ($got >= - $range);
293 } else {
294 my $diff = $got - $expected;
295 $pass = abs ($diff / $expected) < $range;
296 }
297 unless ($pass) {
298 if ($got eq $expected) {
299 unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n";
300 }
d5f8084a
KW
301 unshift@mess, "# got "._qq($got)."\n",
302 "# expected "._qq($expected)." (within "._qq($range).")\n";
58d76dfd
JH
303 }
304 _ok($pass, _where(), $name, @mess);
305}
306
69026470 307# Note: this isn't quite as fancy as Test::More::like().
724aa791
JC
308
309sub like ($$@) { like_yn (0,@_) }; # 0 for -
310sub unlike ($$@) { like_yn (1,@_) }; # 1 for un-
311
312sub like_yn ($$$@) {
313 my ($flip, $got, $expected, $name, @mess) = @_;
69026470 314 my $pass;
724aa791
JC
315 $pass = $got =~ /$expected/ if !$flip;
316 $pass = $got !~ /$expected/ if $flip;
317 unless ($pass) {
318 unshift(@mess, "# got '$got'\n",
5a4a8c8b
NC
319 $flip
320 ? "# expected !~ /$expected/\n" : "# expected /$expected/\n");
69026470 321 }
5693d826 322 local $Level = $Level + 1;
7d932aad 323 _ok($pass, _where(), $name, @mess);
69026470
JH
324}
325
326sub pass {
327 _ok(1, '', @_);
328}
329
330sub fail {
331 _ok(0, _where(), @_);
332}
333
ad20d923 334sub curr_test {
cf8feb78 335 $test = shift if @_;
ad20d923
MS
336 return $test;
337}
338
3e90d5a3 339sub next_test {
178eff92 340 my $retval = $test;
485f531e 341 $test = $test + 1; # don't use ++
178eff92 342 $retval;
3e90d5a3
MS
343}
344
69026470
JH
345# Note: can't pass multipart messages since we try to
346# be compatible with Test::More::skip().
347sub skip {
7d932aad 348 my $why = shift;
982b7cb7 349 my $n = @_ ? shift : 1;
69026470 350 for (1..$n) {
7bb7fa38 351 _print "ok $test # skip $why\n";
485f531e 352 $test = $test + 1;
69026470
JH
353 }
354 local $^W = 0;
355 last SKIP;
356}
357
09f04786
MS
358sub todo_skip {
359 my $why = shift;
360 my $n = @_ ? shift : 1;
361
362 for (1..$n) {
7bb7fa38 363 _print "not ok $test # TODO & SKIP $why\n";
485f531e 364 $test = $test + 1;
09f04786
MS
365 }
366 local $^W = 0;
367 last TODO;
368}
369
69026470
JH
370sub eq_array {
371 my ($ra, $rb) = @_;
372 return 0 unless $#$ra == $#$rb;
373 for my $i (0..$#$ra) {
8210c8d3 374 next if !defined $ra->[$i] && !defined $rb->[$i];
135d199b
DM
375 return 0 if !defined $ra->[$i];
376 return 0 if !defined $rb->[$i];
69026470
JH
377 return 0 unless $ra->[$i] eq $rb->[$i];
378 }
379 return 1;
380}
381
677fb045
NC
382sub eq_hash {
383 my ($orig, $suspect) = @_;
384 my $fail;
385 while (my ($key, $value) = each %$suspect) {
386 # Force a hash recompute if this perl's internals can cache the hash key.
387 $key = "" . $key;
388 if (exists $orig->{$key}) {
389 if ($orig->{$key} ne $value) {
3d66076a 390 _print "# key ", _qq($key), " was ", _qq($orig->{$key}),
de522f7a 391 " now ", _qq($value), "\n";
677fb045
NC
392 $fail = 1;
393 }
394 } else {
3d66076a 395 _print "# key ", _qq($key), " is ", _qq($value),
75385f53 396 ", not in original.\n";
677fb045
NC
397 $fail = 1;
398 }
399 }
400 foreach (keys %$orig) {
401 # Force a hash recompute if this perl's internals can cache the hash key.
402 $_ = "" . $_;
403 next if (exists $suspect->{$_});
3d66076a 404 _print "# key ", _qq($_), " was ", _qq($orig->{$_}), " now missing.\n";
677fb045
NC
405 $fail = 1;
406 }
407 !$fail;
408}
409
c3029c66 410sub require_ok ($) {
69026470
JH
411 my ($require) = @_;
412 eval <<REQUIRE_OK;
413require $require;
414REQUIRE_OK
1577bb16 415 _ok(!$@, _where(), "require $require");
69026470
JH
416}
417
c3029c66 418sub use_ok ($) {
69026470
JH
419 my ($use) = @_;
420 eval <<USE_OK;
421use $use;
422USE_OK
1577bb16 423 _ok(!$@, _where(), "use $use");
69026470
JH
424}
425
137352a2
RGS
426# runperl - Runs a separate perl interpreter.
427# Arguments :
428# switches => [ command-line switches ]
429# nolib => 1 # don't use -I../lib (included by default)
3d7a9343 430# non_portable => Don't warn if a one liner contains quotes
137352a2 431# prog => one-liner (avoid quotes)
d83945bc 432# progs => [ multi-liner (avoid quotes) ]
137352a2
RGS
433# progfile => perl script
434# stdin => string to feed the stdin
435# stderr => redirect stderr to stdout
436# args => [ command-line arguments to the perl program ]
cb9c5e20 437# verbose => print the command line
137352a2
RGS
438
439my $is_mswin = $^O eq 'MSWin32';
440my $is_netware = $^O eq 'NetWare';
137352a2 441my $is_vms = $^O eq 'VMS';
e67ed694 442my $is_cygwin = $^O eq 'cygwin';
137352a2 443
cb9c5e20
JH
444sub _quote_args {
445 my ($runperl, $args) = @_;
446
447 foreach (@$args) {
448 # In VMS protect with doublequotes because otherwise
449 # DCL will lowercase -- unless already doublequoted.
ea9ac5ad 450 $_ = q(").$_.q(") if $is_vms && !/^\"/ && length($_) > 0;
1cce9906 451 $runperl = $runperl . ' ' . $_;
cb9c5e20 452 }
1cce9906 453 return $runperl;
cb9c5e20
JH
454}
455
4cd2bd1f 456sub _create_runperl { # Create the string to qx in runperl().
137352a2 457 my %args = @_;
5fe9b82b
JH
458 my $runperl = which_perl();
459 if ($runperl =~ m/\s/) {
460 $runperl = qq{"$runperl"};
461 }
6cf707aa
RGS
462 #- this allows, for example, to set PERL_RUNPERL_DEBUG=/usr/bin/valgrind
463 if ($ENV{PERL_RUNPERL_DEBUG}) {
464 $runperl = "$ENV{PERL_RUNPERL_DEBUG} $runperl";
465 }
f93a5f07 466 unless ($args{nolib}) {
11ea18f2 467 $runperl = $runperl . ' "-I../lib"'; # doublequotes because of VMS
137352a2 468 }
d83945bc 469 if ($args{switches}) {
343d4a7b
JH
470 local $Level = 2;
471 die "test.pl:runperl(): 'switches' must be an ARRAYREF " . _where()
472 unless ref $args{switches} eq "ARRAY";
1cce9906 473 $runperl = _quote_args($runperl, $args{switches});
d83945bc 474 }
137352a2 475 if (defined $args{prog}) {
21820af6
JH
476 die "test.pl:runperl(): both 'prog' and 'progs' cannot be used " . _where()
477 if defined $args{progs};
d83945bc
A
478 $args{progs} = [$args{prog}]
479 }
480 if (defined $args{progs}) {
21820af6
JH
481 die "test.pl:runperl(): 'progs' must be an ARRAYREF " . _where()
482 unless ref $args{progs} eq "ARRAY";
d83945bc 483 foreach my $prog (@{$args{progs}}) {
3d7a9343
NC
484 if ($prog =~ tr/'"// && !$args{non_portable}) {
485 warn "quotes in prog >>$prog<< are not portable";
486 }
d83945bc 487 if ($is_mswin || $is_netware || $is_vms) {
11ea18f2 488 $runperl = $runperl . qq ( -e "$prog" );
d83945bc
A
489 }
490 else {
11ea18f2 491 $runperl = $runperl . qq ( -e '$prog' );
d83945bc
A
492 }
493 }
137352a2 494 } elsif (defined $args{progfile}) {
11ea18f2 495 $runperl = $runperl . qq( "$args{progfile}");
9a731dbd
NC
496 } else {
497 # You probaby didn't want to be sucking in from the upstream stdin
498 die "test.pl:runperl(): none of prog, progs, progfile, args, "
499 . " switches or stdin specified"
500 unless defined $args{args} or defined $args{switches}
501 or defined $args{stdin};
137352a2
RGS
502 }
503 if (defined $args{stdin}) {
dc459aad
JH
504 # so we don't try to put literal newlines and crs onto the
505 # command line.
506 $args{stdin} =~ s/\n/\\n/g;
507 $args{stdin} =~ s/\r/\\r/g;
5ae09a77 508
137352a2 509 if ($is_mswin || $is_netware || $is_vms) {
5fe9b82b 510 $runperl = qq{$Perl -e "print qq(} .
137352a2
RGS
511 $args{stdin} . q{)" | } . $runperl;
512 }
513 else {
5fe9b82b 514 $runperl = qq{$Perl -e 'print qq(} .
137352a2
RGS
515 $args{stdin} . q{)' | } . $runperl;
516 }
517 }
518 if (defined $args{args}) {
1cce9906 519 $runperl = _quote_args($runperl, $args{args});
cb9c5e20 520 }
11ea18f2 521 $runperl = $runperl . ' 2>&1' if $args{stderr};
cb9c5e20
JH
522 if ($args{verbose}) {
523 my $runperldisplay = $runperl;
524 $runperldisplay =~ s/\n/\n\#/g;
3d66076a 525 _print_stderr "# $runperldisplay\n";
137352a2 526 }
4cd2bd1f
JH
527 return $runperl;
528}
529
530sub runperl {
9a731dbd
NC
531 die "test.pl:runperl() does not take a hashref"
532 if ref $_[0] and ref $_[0] eq 'HASH';
4cd2bd1f 533 my $runperl = &_create_runperl;
613de57f
NC
534 my $result;
535
8210c8d3
MB
536 my $tainted = ${^TAINT};
537 my %args = @_;
485f531e 538 exists $args{switches} && grep m/^-T$/, @{$args{switches}} and $tainted = $tainted + 1;
8210c8d3
MB
539
540 if ($tainted) {
613de57f
NC
541 # We will assume that if you're running under -T, you really mean to
542 # run a fresh perl, so we'll brute force launder everything for you
543 my $sep;
544
afe79e7b 545 if (! eval 'require Config; 1') {
613de57f
NC
546 warn "test.pl had problems loading Config: $@";
547 $sep = ':';
548 } else {
afe79e7b 549 $sep = $Config::Config{path_sep};
a70a1627 550 }
613de57f
NC
551
552 my @keys = grep {exists $ENV{$_}} qw(CDPATH IFS ENV BASH_ENV);
553 local @ENV{@keys} = ();
554 # Untaint, plus take out . and empty string:
02bb3106 555 local $ENV{'DCL$PATH'} = $1 if $is_vms && exists($ENV{'DCL$PATH'}) && ($ENV{'DCL$PATH'} =~ /(.*)/s);
613de57f 556 $ENV{PATH} =~ /(.*)/s;
8210c8d3 557 local $ENV{PATH} =
3b6d8381 558 join $sep, grep { $_ ne "" and $_ ne "." and -d $_ and
326b5008 559 ($is_mswin or $is_vms or !(stat && (stat _)[2]&0022)) }
8210c8d3 560 split quotemeta ($sep), $1;
11ea18f2 561 $ENV{PATH} = $ENV{PATH} . "$sep/bin" if $is_cygwin; # Must have /bin under Cygwin
613de57f
NC
562
563 $runperl =~ /(.*)/s;
564 $runperl = $1;
565
566 $result = `$runperl`;
567 } else {
568 $result = `$runperl`;
a70a1627 569 }
137352a2
RGS
570 $result =~ s/\n\n/\n/ if $is_vms; # XXX pipes sometimes double these
571 return $result;
572}
573
140f5369
MS
574# Nice alias
575*run_perl = *run_perl = \&runperl; # shut up "used only once" warning
8799135f 576
c4fbe247 577sub DIE {
3d66076a 578 _print_stderr "# @_\n";
c4fbe247 579 exit 1;
8799135f
MS
580}
581
b5fe401b 582# A somewhat safer version of the sometimes wrong $^X.
17a740d5
JH
583sub which_perl {
584 unless (defined $Perl) {
585 $Perl = $^X;
8210c8d3 586
73421c4a
CB
587 # VMS should have 'perl' aliased properly
588 return $Perl if $^O eq 'VMS';
589
17a740d5 590 my $exe;
afe79e7b 591 if (! eval 'require Config; 1') {
17a740d5
JH
592 warn "test.pl had problems loading Config: $@";
593 $exe = '';
85363d30 594 } else {
afe79e7b 595 $exe = $Config::Config{_exe};
85363d30 596 }
da405c16 597 $exe = '' unless defined $exe;
8210c8d3 598
17a740d5
JH
599 # This doesn't absolutize the path: beware of future chdirs().
600 # We could do File::Spec->abs2rel() but that does getcwd()s,
601 # which is a bit heavyweight to do here.
8210c8d3 602
17a740d5 603 if ($Perl =~ /^perl\Q$exe\E$/i) {
8db06b02 604 my $perl = "perl$exe";
afe79e7b 605 if (! eval 'require File::Spec; 1') {
17a740d5 606 warn "test.pl had problems loading File::Spec: $@";
8db06b02 607 $Perl = "./$perl";
17a740d5 608 } else {
8db06b02 609 $Perl = File::Spec->catfile(File::Spec->curdir(), $perl);
17a740d5
JH
610 }
611 }
196918b0
PG
612
613 # Build up the name of the executable file from the name of
614 # the command.
615
616 if ($Perl !~ /\Q$exe\E$/i) {
11ea18f2 617 $Perl = $Perl . $exe;
196918b0 618 }
c880be78 619
8db06b02 620 warn "which_perl: cannot find $Perl from $^X" unless -f $Perl;
8210c8d3 621
17a740d5
JH
622 # For subcommands to use.
623 $ENV{PERLEXE} = $Perl;
85363d30 624 }
17a740d5 625 return $Perl;
b5fe401b
MS
626}
627
435e7af6
NC
628sub unlink_all {
629 foreach my $file (@_) {
630 1 while unlink $file;
3d66076a 631 _print_stderr "# Couldn't unlink '$file': $!\n" if -f $file;
435e7af6
NC
632 }
633}
eeabcb2d 634
748a4b20
NC
635my %tmpfiles;
636END { unlink_all keys %tmpfiles }
637
638# A regexp that matches the tempfile names
639$::tempfile_regexp = 'tmp\d+[A-Z][A-Z]?';
c1ddc35c 640
7a7e4936
NC
641# Avoid ++, avoid ranges, avoid split //
642my @letters = qw(A B C D E F G H I J K L M N O P Q R S T U V W X Y Z);
643sub tempfile {
644 my $count = 0;
645 do {
646 my $temp = $count;
647 my $try = "tmp$$";
648 do {
11ea18f2 649 $try = $try . $letters[$temp % 26];
748a4b20 650 $temp = int ($temp / 26);
7a7e4936 651 } while $temp;
748a4b20
NC
652 # Need to note all the file names we allocated, as a second request may
653 # come before the first is created.
654 if (!-e $try && !$tmpfiles{$try}) {
c1ddc35c 655 # We have a winner
11ea18f2 656 $tmpfiles{$try} = 1;
c1ddc35c
NC
657 return $try;
658 }
7a7e4936
NC
659 $count = $count + 1;
660 } while $count < 26 * 26;
661 die "Can't find temporary file name starting 'tmp$$'";
662}
663
c1ddc35c 664# This is the temporary file for _fresh_perl
7a7e4936 665my $tmpfile = tempfile();
eeabcb2d 666
f5cda331
JH
667#
668# _fresh_perl
669#
670# The $resolve must be a subref that tests the first argument
671# for success, or returns the definition of success (e.g. the
672# expected scalar) if given no arguments.
673#
674
675sub _fresh_perl {
676 my($prog, $resolve, $runperl_args, $name) = @_;
eeabcb2d 677
11ea18f2
NC
678 # Given the choice of the mis-parsable {}
679 # (we want an anon hash, but a borked lexer might think that it's a block)
680 # or relying on taking a reference to a lexical
681 # (\ might be mis-parsed, and the reference counting on the pad may go
682 # awry)
683 # it feels like the least-worse thing is to assume that auto-vivification
684 # works. At least, this is only going to be a run-time failure, so won't
685 # affect tests using this file but not this function.
eeabcb2d
MS
686 $runperl_args->{progfile} = $tmpfile;
687 $runperl_args->{stderr} = 1;
688
689 open TEST, ">$tmpfile" or die "Cannot open $tmpfile: $!";
690
691 # VMS adjustments
692 if( $^O eq 'VMS' ) {
693 $prog =~ s#/dev/null#NL:#;
694
8210c8d3 695 # VMS file locking
eeabcb2d
MS
696 $prog =~ s{if \(-e _ and -f _ and -r _\)}
697 {if (-e _ and -f _)}
698 }
699
0d65d7d5 700 print TEST $prog;
eeabcb2d
MS
701 close TEST or die "Cannot close $tmpfile: $!";
702
703 my $results = runperl(%$runperl_args);
704 my $status = $?;
705
706 # Clean up the results into something a bit more predictable.
50f17f89 707 $results =~ s/\n+$//;
748a4b20
NC
708 $results =~ s/at\s+$::tempfile_regexp\s+line/at - line/g;
709 $results =~ s/of\s+$::tempfile_regexp\s+aborted/of - aborted/g;
eeabcb2d
MS
710
711 # bison says 'parse error' instead of 'syntax error',
712 # various yaccs may or may not capitalize 'syntax'.
713 $results =~ s/^(syntax|parse) error/syntax error/mig;
714
715 if ($^O eq 'VMS') {
716 # some tests will trigger VMS messages that won't be expected
717 $results =~ s/\n?%[A-Z]+-[SIWEF]-[A-Z]+,.*//;
718
719 # pipes double these sometimes
720 $results =~ s/\n\n/\n/g;
721 }
722
f5cda331 723 my $pass = $resolve->($results);
eeabcb2d 724 unless ($pass) {
cf8feb78
MJD
725 _diag "# PROG: \n$prog\n";
726 _diag "# EXPECTED:\n", $resolve->(), "\n";
727 _diag "# GOT:\n$results\n";
728 _diag "# STATUS: $status\n";
eeabcb2d
MS
729 }
730
e2c38acd
JH
731 # Use the first line of the program as a name if none was given
732 unless( $name ) {
733 ($first_line, $name) = $prog =~ /^((.{1,50}).*)/;
11ea18f2 734 $name = $name . '...' if length $first_line > length $name;
e2c38acd 735 }
eeabcb2d 736
f5cda331
JH
737 _ok($pass, _where(), "fresh_perl - $name");
738}
739
740#
141f445b 741# fresh_perl_is
f5cda331
JH
742#
743# Combination of run_perl() and is().
744#
745
746sub fresh_perl_is {
747 my($prog, $expected, $runperl_args, $name) = @_;
50f17f89
MS
748
749 # _fresh_perl() is going to clip the trailing newlines off the result.
750 # This will make it so the test author doesn't have to know that.
751 $expected =~ s/\n+$//;
752
dcc7f481 753 local $Level = 2;
f5cda331
JH
754 _fresh_perl($prog,
755 sub { @_ ? $_[0] eq $expected : $expected },
756 $runperl_args, $name);
757}
758
759#
141f445b 760# fresh_perl_like
f5cda331
JH
761#
762# Combination of run_perl() and like().
763#
764
765sub fresh_perl_like {
766 my($prog, $expected, $runperl_args, $name) = @_;
dcc7f481 767 local $Level = 2;
f5cda331 768 _fresh_perl($prog,
077f8342 769 sub { @_ ? $_[0] =~ $expected : $expected },
f5cda331 770 $runperl_args, $name);
eeabcb2d
MS
771}
772
35a60386
RGS
773sub can_ok ($@) {
774 my($proto, @methods) = @_;
775 my $class = ref $proto || $proto;
776
777 unless( @methods ) {
778 return _ok( 0, _where(), "$class->can(...)" );
779 }
780
781 my @nok = ();
782 foreach my $method (@methods) {
783 local($!, $@); # don't interfere with caller's $@
784 # eval sometimes resets $!
785 eval { $proto->can($method) } || push @nok, $method;
786 }
787
788 my $name;
8210c8d3 789 $name = @methods == 1 ? "$class->can('$methods[0]')"
35a60386 790 : "$class->can(...)";
8210c8d3 791
35a60386
RGS
792 _ok( !@nok, _where(), $name );
793}
794
ad4e703e
MS
795
796# Call $class->new( @$args ); and run the result through isa_ok.
797# See Test::More::new_ok
798sub new_ok {
799 my($class, $args, $obj_name) = @_;
800 $args ||= [];
801 $object_name = "The object" unless defined $obj_name;
802
803 local $Level = $Level + 1;
804
805 my $obj;
806 my $ok = eval { $obj = $class->new(@$args); 1 };
807 my $error = $@;
808
809 if($ok) {
810 isa_ok($obj, $class, $object_name);
811 }
812 else {
813 ok( 0, "new() died" );
814 diag("Error was: $@");
815 }
816
817 return $obj;
818
819}
820
821
35a60386
RGS
822sub isa_ok ($$;$) {
823 my($object, $class, $obj_name) = @_;
824
825 my $diag;
826 $obj_name = 'The object' unless defined $obj_name;
827 my $name = "$obj_name isa $class";
828 if( !defined $object ) {
829 $diag = "$obj_name isn't defined";
830 }
831 elsif( !ref $object ) {
832 $diag = "$obj_name isn't a reference";
833 }
834 else {
835 # We can't use UNIVERSAL::isa because we want to honor isa() overrides
836 local($@, $!); # eval sometimes resets $!
837 my $rslt = eval { $object->isa($class) };
838 if( $@ ) {
839 if( $@ =~ /^Can't call method "isa" on unblessed reference/ ) {
840 if( !UNIVERSAL::isa($object, $class) ) {
841 my $ref = ref $object;
842 $diag = "$obj_name isn't a '$class' it's a '$ref'";
843 }
844 } else {
845 die <<WHOA;
846WHOA! I tried to call ->isa on your object and got some weird error.
847This should never happen. Please contact the author immediately.
848Here's the error.
849$@
850WHOA
851 }
852 }
853 elsif( !$rslt ) {
854 my $ref = ref $object;
855 $diag = "$obj_name isn't a '$class' it's a '$ref'";
856 }
857 }
858
859 _ok( !$diag, _where(), $name );
860}
861
087986a7 862# Set a watchdog to timeout the entire test file
5fe9b82b
JH
863# NOTE: If the test file uses 'threads', then call the watchdog() function
864# _AFTER_ the 'threads' module is loaded.
5732108f 865sub watchdog ($;$)
087986a7
JH
866{
867 my $timeout = shift;
36436324 868 my $method = shift || "";
087986a7
JH
869 my $timeout_msg = 'Test process timed out - terminating';
870
e07ce2e4
GG
871 # Valgrind slows perl way down so give it more time before dying.
872 $timeout *= 10 if $ENV{PERL_VALGRIND};
873
087986a7
JH
874 my $pid_to_kill = $$; # PID for this process
875
5732108f
GG
876 if ($method eq "alarm") {
877 goto WATCHDOG_VIA_ALARM;
878 }
879
140f5369
MS
880 # shut up use only once warning
881 my $threads_on = $threads::threads && $threads::threads;
882
5fe9b82b
JH
883 # Don't use a watchdog process if 'threads' is loaded -
884 # use a watchdog thread instead
140f5369 885 if (!$threads_on) {
5fe9b82b
JH
886
887 # On Windows and VMS, try launching a watchdog process
888 # using system(1, ...) (see perlport.pod)
889 if (($^O eq 'MSWin32') || ($^O eq 'VMS')) {
890 # On Windows, try to get the 'real' PID
891 if ($^O eq 'MSWin32') {
892 eval { require Win32; };
893 if (defined(&Win32::GetCurrentProcessId)) {
894 $pid_to_kill = Win32::GetCurrentProcessId();
895 }
087986a7 896 }
087986a7 897
5fe9b82b
JH
898 # If we still have a fake PID, we can't use this method at all
899 return if ($pid_to_kill <= 0);
900
901 # Launch watchdog process
902 my $watchdog;
903 eval {
904 local $SIG{'__WARN__'} = sub {
905 _diag("Watchdog warning: $_[0]");
906 };
c1c45e36 907 my $sig = $^O eq 'VMS' ? 'TERM' : 'KILL';
9b7a5066
CB
908 my $cmd = _create_runperl( prog => "sleep($timeout);" .
909 "warn qq/# $timeout_msg" . '\n/;' .
c1c45e36 910 "kill($sig, $pid_to_kill);");
9b7a5066 911 $watchdog = system(1, $cmd);
5fe9b82b
JH
912 };
913 if ($@ || ($watchdog <= 0)) {
914 _diag('Failed to start watchdog');
915 _diag($@) if $@;
916 undef($watchdog);
917 return;
918 }
087986a7 919
5fe9b82b
JH
920 # Add END block to parent to terminate and
921 # clean up watchdog process
7e1027b9
JH
922 eval "END { local \$! = 0; local \$? = 0;
923 wait() if kill('KILL', $watchdog); };";
5fe9b82b 924 return;
087986a7 925 }
087986a7 926
5fe9b82b
JH
927 # Try using fork() to generate a watchdog process
928 my $watchdog;
929 eval { $watchdog = fork() };
930 if (defined($watchdog)) {
931 if ($watchdog) { # Parent process
932 # Add END block to parent to terminate and
933 # clean up watchdog process
7e1027b9
JH
934 eval "END { local \$! = 0; local \$? = 0;
935 wait() if kill('KILL', $watchdog); };";
5fe9b82b
JH
936 return;
937 }
938
939 ### Watchdog process code
087986a7 940
5fe9b82b
JH
941 # Load POSIX if available
942 eval { require POSIX; };
087986a7 943
5fe9b82b
JH
944 # Execute the timeout
945 sleep($timeout - 2) if ($timeout > 2); # Workaround for perlbug #49073
946 sleep(2);
087986a7 947
5fe9b82b
JH
948 # Kill test process if still running
949 if (kill(0, $pid_to_kill)) {
950 _diag($timeout_msg);
951 kill('KILL', $pid_to_kill);
952 }
087986a7 953
5fe9b82b
JH
954 # Don't execute END block (added at beginning of this file)
955 $NO_ENDING = 1;
087986a7 956
5fe9b82b
JH
957 # Terminate ourself (i.e., the watchdog)
958 POSIX::_exit(1) if (defined(&POSIX::_exit));
959 exit(1);
087986a7
JH
960 }
961
5fe9b82b 962 # fork() failed - fall through and try using a thread
087986a7
JH
963 }
964
5fe9b82b
JH
965 # Use a watchdog thread because either 'threads' is loaded,
966 # or fork() failed
afe79e7b 967 if (eval 'require threads; 1') {
087986a7
JH
968 threads->create(sub {
969 # Load POSIX if available
970 eval { require POSIX; };
971
972 # Execute the timeout
c1c45e36 973 my $time_left = $timeout;
a6c9a815 974 do {
11ea18f2 975 $time_left = $time_left - sleep($time_left);
a6c9a815 976 } while ($time_left > 0);
087986a7
JH
977
978 # Kill the parent (and ourself)
5fe9b82b 979 select(STDERR); $| = 1;
087986a7
JH
980 _diag($timeout_msg);
981 POSIX::_exit(1) if (defined(&POSIX::_exit));
c1c45e36
CB
982 my $sig = $^O eq 'VMS' ? 'TERM' : 'KILL';
983 kill($sig, $pid_to_kill);
087986a7
JH
984 })->detach();
985 return;
986 }
987
5fe9b82b 988 # If everything above fails, then just use an alarm timeout
5732108f 989WATCHDOG_VIA_ALARM:
087986a7
JH
990 if (eval { alarm($timeout); 1; }) {
991 # Load POSIX if available
992 eval { require POSIX; };
993
994 # Alarm handler will do the actual 'killing'
995 $SIG{'ALRM'} = sub {
5fe9b82b 996 select(STDERR); $| = 1;
087986a7
JH
997 _diag($timeout_msg);
998 POSIX::_exit(1) if (defined(&POSIX::_exit));
c1c45e36
CB
999 my $sig = $^O eq 'VMS' ? 'TERM' : 'KILL';
1000 kill($sig, $pid_to_kill);
087986a7
JH
1001 };
1002 }
1003}
1004
f69d9fdf
KW
1005my $cp_0037 = # EBCDIC code page 0037
1006 '\x00\x01\x02\x03\x37\x2D\x2E\x2F\x16\x05\x25\x0B\x0C\x0D\x0E\x0F' .
1007 '\x10\x11\x12\x13\x3C\x3D\x32\x26\x18\x19\x3F\x27\x1C\x1D\x1E\x1F' .
1008 '\x40\x5A\x7F\x7B\x5B\x6C\x50\x7D\x4D\x5D\x5C\x4E\x6B\x60\x4B\x61' .
1009 '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\x7A\x5E\x4C\x7E\x6E\x6F' .
1010 '\x7C\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xD1\xD2\xD3\xD4\xD5\xD6' .
1011 '\xD7\xD8\xD9\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xBA\xE0\xBB\xB0\x6D' .
1012 '\x79\x81\x82\x83\x84\x85\x86\x87\x88\x89\x91\x92\x93\x94\x95\x96' .
1013 '\x97\x98\x99\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xC0\x4F\xD0\xA1\x07' .
1014 '\x20\x21\x22\x23\x24\x15\x06\x17\x28\x29\x2A\x2B\x2C\x09\x0A\x1B' .
1015 '\x30\x31\x1A\x33\x34\x35\x36\x08\x38\x39\x3A\x3B\x04\x14\x3E\xFF' .
1016 '\x41\xAA\x4A\xB1\x9F\xB2\x6A\xB5\xBD\xB4\x9A\x8A\x5F\xCA\xAF\xBC' .
1017 '\x90\x8F\xEA\xFA\xBE\xA0\xB6\xB3\x9D\xDA\x9B\x8B\xB7\xB8\xB9\xAB' .
1018 '\x64\x65\x62\x66\x63\x67\x9E\x68\x74\x71\x72\x73\x78\x75\x76\x77' .
1019 '\xAC\x69\xED\xEE\xEB\xEF\xEC\xBF\x80\xFD\xFE\xFB\xFC\xAD\xAE\x59' .
1020 '\x44\x45\x42\x46\x43\x47\x9C\x48\x54\x51\x52\x53\x58\x55\x56\x57' .
1021 '\x8C\x49\xCD\xCE\xCB\xCF\xCC\xE1\x70\xDD\xDE\xDB\xDC\x8D\x8E\xDF';
1022
1023my $cp_1047 = # EBCDIC code page 1047
1024 '\x00\x01\x02\x03\x37\x2D\x2E\x2F\x16\x05\x15\x0B\x0C\x0D\x0E\x0F' .
1025 '\x10\x11\x12\x13\x3C\x3D\x32\x26\x18\x19\x3F\x27\x1C\x1D\x1E\x1F' .
1026 '\x40\x5A\x7F\x7B\x5B\x6C\x50\x7D\x4D\x5D\x5C\x4E\x6B\x60\x4B\x61' .
1027 '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\x7A\x5E\x4C\x7E\x6E\x6F' .
1028 '\x7C\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xD1\xD2\xD3\xD4\xD5\xD6' .
1029 '\xD7\xD8\xD9\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xAD\xE0\xBD\x5F\x6D' .
1030 '\x79\x81\x82\x83\x84\x85\x86\x87\x88\x89\x91\x92\x93\x94\x95\x96' .
1031 '\x97\x98\x99\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xC0\x4F\xD0\xA1\x07' .
1032 '\x20\x21\x22\x23\x24\x25\x06\x17\x28\x29\x2A\x2B\x2C\x09\x0A\x1B' .
1033 '\x30\x31\x1A\x33\x34\x35\x36\x08\x38\x39\x3A\x3B\x04\x14\x3E\xFF' .
1034 '\x41\xAA\x4A\xB1\x9F\xB2\x6A\xB5\xBB\xB4\x9A\x8A\xB0\xCA\xAF\xBC' .
1035 '\x90\x8F\xEA\xFA\xBE\xA0\xB6\xB3\x9D\xDA\x9B\x8B\xB7\xB8\xB9\xAB' .
1036 '\x64\x65\x62\x66\x63\x67\x9E\x68\x74\x71\x72\x73\x78\x75\x76\x77' .
1037 '\xAC\x69\xED\xEE\xEB\xEF\xEC\xBF\x80\xFD\xFE\xFB\xFC\xBA\xAE\x59' .
1038 '\x44\x45\x42\x46\x43\x47\x9C\x48\x54\x51\x52\x53\x58\x55\x56\x57' .
1039 '\x8C\x49\xCD\xCE\xCB\xCF\xCC\xE1\x70\xDD\xDE\xDB\xDC\x8D\x8E\xDF';
1040
1041my $cp_bc = # EBCDIC code page POSiX-BC
1042 '\x00\x01\x02\x03\x37\x2D\x2E\x2F\x16\x05\x15\x0B\x0C\x0D\x0E\x0F' .
1043 '\x10\x11\x12\x13\x3C\x3D\x32\x26\x18\x19\x3F\x27\x1C\x1D\x1E\x1F' .
1044 '\x40\x5A\x7F\x7B\x5B\x6C\x50\x7D\x4D\x5D\x5C\x4E\x6B\x60\x4B\x61' .
1045 '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\x7A\x5E\x4C\x7E\x6E\x6F' .
1046 '\x7C\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xD1\xD2\xD3\xD4\xD5\xD6' .
1047 '\xD7\xD8\xD9\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xBB\xBC\xBD\x6A\x6D' .
1048 '\x4A\x81\x82\x83\x84\x85\x86\x87\x88\x89\x91\x92\x93\x94\x95\x96' .
1049 '\x97\x98\x99\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xFB\x4F\xFD\xFF\x07' .
1050 '\x20\x21\x22\x23\x24\x25\x06\x17\x28\x29\x2A\x2B\x2C\x09\x0A\x1B' .
1051 '\x30\x31\x1A\x33\x34\x35\x36\x08\x38\x39\x3A\x3B\x04\x14\x3E\x5F' .
1052 '\x41\xAA\xB0\xB1\x9F\xB2\xD0\xB5\x79\xB4\x9A\x8A\xBA\xCA\xAF\xA1' .
1053 '\x90\x8F\xEA\xFA\xBE\xA0\xB6\xB3\x9D\xDA\x9B\x8B\xB7\xB8\xB9\xAB' .
1054 '\x64\x65\x62\x66\x63\x67\x9E\x68\x74\x71\x72\x73\x78\x75\x76\x77' .
1055 '\xAC\x69\xED\xEE\xEB\xEF\xEC\xBF\x80\xE0\xFE\xDD\xFC\xAD\xAE\x59' .
1056 '\x44\x45\x42\x46\x43\x47\x9C\x48\x54\x51\x52\x53\x58\x55\x56\x57' .
1057 '\x8C\x49\xCD\xCE\xCB\xCF\xCC\xE1\x70\xC0\xDE\xDB\xDC\x8D\x8E\xDF';
1058
1059my $straight = # Avoid ranges
1060 '\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F' .
1061 '\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F' .
1062 '\x20\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2A\x2B\x2C\x2D\x2E\x2F' .
1063 '\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3A\x3B\x3C\x3D\x3E\x3F' .
1064 '\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4A\x4B\x4C\x4D\x4E\x4F' .
1065 '\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5A\x5B\x5C\x5D\x5E\x5F' .
1066 '\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6A\x6B\x6C\x6D\x6E\x6F' .
1067 '\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7A\x7B\x7C\x7D\x7E\x7F' .
1068 '\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F' .
1069 '\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F' .
1070 '\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF' .
1071 '\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF' .
1072 '\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF' .
1073 '\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF' .
1074 '\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF' .
1075 '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF';
1076
1077# The following 2 functions allow tests to work on both EBCDIC and
1078# ASCII-ish platforms. They convert string scalars between the native
1079# character set and the set of 256 characters which is usually called
1080# Latin1.
1081#
1082# These routines don't work on UTF-EBCDIC and UTF-8.
1083
1084sub native_to_latin1($) {
1085 my $string = shift;
1086
1087 return $string if ord('^') == 94; # ASCII, Latin1
1088 my $cp;
1089 if (ord('^') == 95) { # EBCDIC 1047
1090 $cp = \$cp_1047;
1091 }
1092 elsif (ord('^') == 106) { # EBCDIC POSIX-BC
1093 $cp = \$cp_bc;
1094 }
1095 elsif (ord('^') == 176) { # EBCDIC 037 */
1096 $cp = \$cp_0037;
1097 }
1098 else {
1099 die "Unknown native character set";
1100 }
1101
1102 eval '$string =~ tr/' . $$cp . '/' . $straight . '/';
1103 return $string;
1104}
1105
1106sub latin1_to_native($) {
1107 my $string = shift;
1108
1109 return $string if ord('^') == 94; # ASCII, Latin1
1110 my $cp;
1111 if (ord('^') == 95) { # EBCDIC 1047
1112 $cp = \$cp_1047;
1113 }
1114 elsif (ord('^') == 106) { # EBCDIC POSIX-BC
1115 $cp = \$cp_bc;
1116 }
1117 elsif (ord('^') == 176) { # EBCDIC 037 */
1118 $cp = \$cp_0037;
1119 }
1120 else {
1121 die "Unknown native character set";
1122 }
1123
1124 eval '$string =~ tr/' . $straight . '/' . $$cp . '/';
1125 return $string;
1126}
1127
69026470 11281;