Add t/op/readline.t docs
authorJosh ben Jore <jjore@cpan.org>
Wed, 14 Jul 2010 06:56:29 +0000 (23:56 -0700)
committerJosh ben Jore <jjore@cpan.org>
Wed, 14 Jul 2010 15:10:16 +0000 (08:10 -0700)
t/op/readline.t

index 1069a97..a71a934 100644 (file)
@@ -8,9 +8,12 @@ BEGIN {
 
 plan tests => 18;
 
+# [perl #19566]: sv_gets writes directly to its argument via
+# TARG. Test that we respect SvREADONLY.
 eval { for (\2) { $_ = <FH> } };
 like($@, 'Modification of a read-only value attempted', '[perl #19566]');
 
+# [perl #21628]
 {
   my $file = tempfile();
   open A,'+>',$file; $a = 3;
@@ -19,7 +22,8 @@ like($@, 'Modification of a read-only value attempted', '[perl #19566]');
   is($a .= <A>, 4, '#21628 - $a .= <A> , A closed');
 }
 
-# 82 is chosen to exceed the length for sv_grow in do_readline (80)
+# [perl #21614]: 82 is chosen to exceed the length for sv_grow in
+# do_readline (80)
 foreach my $k (1, 82) {
   my $result
     = runperl (stdin => '', stderr => 1,