Moved the original test file from the previous patch into t/op/lex.t,
authorJesse Vincent <jesse@bestpractical.com>
Wed, 25 Nov 2009 18:47:38 +0000 (13:47 -0500)
committerJesse Vincent <jesse@bestpractical.com>
Wed, 25 Nov 2009 19:31:28 +0000 (14:31 -0500)
Aded details on the bug it fixes to the tests.

MANIFEST
t/comp/interpolate.t [deleted file]
t/op/lex.t

index a8f80ed..bc4460d 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -4234,7 +4234,6 @@ t/io/tell.t                       See if file seeking works
 t/io/through.t                 See if pipe passes data intact
 t/io/utf8.t                    See if file seeking works
 t/japh/abigail.t               Obscure tests
-t/comp/interpolate.t                   See if interpolating strings work
 t/lib/1_compile.t              See if the various libraries and extensions compile
 t/lib/Cname.pm                 Test charnames in regexes (op/pat.t)
 t/lib/common.pl                        Helper for lib/{warnings,feature}.t
diff --git a/t/comp/interpolate.t b/t/comp/interpolate.t
deleted file mode 100644 (file)
index 3472d97..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-BEGIN {
-    require "test.pl"
-}
-
-use strict;
-use warnings;
-
-plan 2;
-
-{
-    my %foo = (aap => "monkey");
-    my $foo = '';
-    is("@{[$foo{'aap'}]}", 'monkey', 'interpolation of hash lookup with space between lexical variable and subscript');
-    is("@{[$foo {'aap'}]}", 'monkey', 'interpolation of hash lookup with space between lexical variable and subscript');
-}
index 3f00248..0789077 100644 (file)
@@ -1,9 +1,10 @@
-#!perl -w
+#!perl
 use strict;
+use warnings;
 
 require './test.pl';
 
-plan(tests => 2);
+plan(tests => 4);
 
 {
     no warnings 'deprecated';
@@ -20,3 +21,27 @@ $yow
 }
 
 curr_test(3);
+
+
+{
+    my %foo = (aap => "monkey");
+    my $foo = '';
+    is("@{[$foo{'aap'}]}", 'monkey', 'interpolation of hash lookup with space between lexical variable and subscript');
+    is("@{[$foo {'aap'}]}", 'monkey', 'interpolation of hash lookup with space between lexical variable and subscript - test for [perl #70091]');
+
+# Original bug report [perl #70091]
+#  #!perl
+#  use warnings;
+#  my %foo;
+#  my $foo = '';
+#  (my $tmp = $foo) =~ s/^/$foo {$0}/e;
+#  __END__
+#
+#  This program causes a segfault with 5.10.0 and 5.10.1.
+#
+#  The space between '$foo' and '{' is essential, which is why piping
+#  it through perl -MO=Deparse "fixes" it.
+#
+
+}
+