11 # [perl #19566]: sv_gets writes directly to its argument via
12 # TARG. Test that we respect SvREADONLY.
13 eval { for (\2) { $_ = <FH> } };
14 like($@, 'Modification of a read-only value attempted', '[perl #19566]');
18 my $file = tempfile();
19 open A,'+>',$file; $a = 3;
20 is($a .= <A>, 3, '#21628 - $a .= <A> , A eof');
22 is($a .= <A>, 4, '#21628 - $a .= <A> , A closed');
25 # [perl #21614]: 82 is chosen to exceed the length for sv_grow in
27 foreach my $k (1, 82) {
29 = runperl (stdin => '', stderr => 1,
30 prog => "\$x = q(k) x $k; \$a{\$x} = qw(v); \$_ = <> foreach keys %a; print qw(end)",
32 $result =~ s/\n\z// if $^O eq 'VMS';
33 is ($result, "end", '[perl #21614] for length ' . length('k' x $k));
37 foreach my $k (1, 21) {
39 = runperl (stdin => ' rules', stderr => 1,
40 prog => "\$x = q(perl) x $k; \$a{\$x} = q(v); foreach (keys %a) {\$_ .= <>; print}",
42 $result =~ s/\n\z// if $^O eq 'VMS';
43 is ($result, ('perl' x $k) . " rules", 'rcatline to shared sv for length ' . length('perl' x $k));
46 foreach my $l (1, 82) {
51 is ($k, "moo\n", 'catline to COW sv for length ' . length $copy);
55 foreach my $l (1, 21) {
60 is ($k, "$perl rules\n", 'rcatline to COW sv for length ' . length $perl);
66 open F, File::Spec->curdir and sysread F, $_, 1;
71 skip "you can read directories as plain files", 2 unless( $err );
74 open F, File::Spec->curdir and $_=<F>;
75 ok( $!==$err && !defined($_) => 'readline( DIRECTORY )' );
80 open F, File::Spec->curdir and $_=<F>;
81 ok( $!==$err && !defined($_) => 'readline( DIRECTORY ) slurp mode' );
86 fresh_perl_is('BEGIN{<>}', '',
87 { switches => ['-w'], stdin => '', stderr => 1 },
88 'No ARGVOUT used only once warning');
90 fresh_perl_is('print readline', 'foo',
91 { switches => ['-w'], stdin => 'foo', stderr => 1 },
92 'readline() defaults to *ARGV');
94 # [perl #72720] Test that sv_gets clears any variables that should be
95 # empty so if the read() aborts with EINTER, the TARG is actually
97 sub test_eintr_readline {
98 my ( $fh, $timeout ) = @_;
100 # This variable, the TARG for the readline is the core of this
101 # test. The test is to see that after a my() and a failure in
102 # readline() has the variable revived old, "dead" values from the
103 # past or is it still undef like expected.
106 # Do a readline into $line.
109 # Do a SIGALARM aborted readline(). The underlying sv_gets()
110 # from sv.c will use the syscall read() while will exit early
111 # and return something like EINTR or ERESTARTSYS.
115 local $SIG{ALRM} = sub {
117 die 'abort this timeout';
121 $line = readline $fh;
126 # The code should have timed out.
127 if ( ! $timed_out ) {
130 : "Interrupted readline() test couldn't get interrupted: $errno";
134 $line = readline $fh;
140 # Connect two handles together.
148 skip( 2, 'The pipe function is unimplemented' );
151 # Make the pipe autoflushing
153 my $old_fh = select $out;
158 # Only one line is loaded into the pipe. It's written unbuffered
159 # so I'm confident it'll not be buffered.
160 syswrite $out, "once\n";
162 # Buggy perls will return the last thing successfully
163 # returned. Buggy perls will return "once\n" a second (and
164 # "infinitely" if we desired) as long as the internal read()
165 # syscall fails. In our case, it fails because the inner my($line)
166 # retains all its allocated space and buggy perl sets SvPOK to
167 # make the value valid but before it starts read().
168 my $once = test_eintr_readline( $in, 0 );
169 my $twice = test_eintr_readline( $in, 1 );
170 is( $once, "once\n", "readline read first line ok" );
173 local our $TODO = "bad readline returns '', not undef";
174 is( $twice, undef, "readline didn't return first line again" );
180 like($obj, qr/main=ARRAY.*world/, 'rcatline and refs');
184 tie our $one, 'Tie::StdScalar', "A: ";
185 tie our $two, 'Tie::StdScalar', "B: ";
189 is( $one, "A: One\n", "rcatline works with tied scalars" );
190 is( $two, "B: Two\n", "rcatline works with tied scalars" );