This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
re-implement OPpASSIGN_COMMON mechanism
[perl5.git] / t / op / print.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     require "./test.pl";
6 }
7
8 plan(3);
9
10 fresh_perl_is('$_ = qq{OK\n}; print;', "OK\n", {},
11               'print without arguments outputs $_');
12 fresh_perl_is('$_ = qq{OK\n}; print STDOUT;', "OK\n", {},
13               'print with only a filehandle outputs $_');
14 SKIP: {
15     skip_if_miniperl('no dynamic loading of PerlIO::scalar in miniperl');
16     skip("EBCDIC") if $::IS_EBCDIC;    # Varies depending on code page
17 fresh_perl_is(<<'EOF', "\xC1\xAF\xC1\xAF\xC1\xB0\xC1\xB3", {}, "print doesn't launder utf8 overlongs");
18 use strict;
19 use warnings;
20
21 no warnings 'utf8';
22
23 # These form overlong "oops"
24 open my $fh, "<:utf8", \"\xC1\xAF\xC1\xAF\xC1\xB0\xC1\xB3"
25     or die "Could not open\n";
26 read($fh, my $s, 10) or die "Could not read\n";
27 print $s;
28 EOF
29
30 }