In perl.git, the branch smoke-me/carp-107636 has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/79f743eb0fa9594862f1bc7828424ddddaedeb7f?hp=6db5ece2f7fb5e8b13bb78f0622746118f674f1f>

- Log -----------------------------------------------------------------
commit 79f743eb0fa9594862f1bc7828424ddddaedeb7f
Author: Father Chrysostomos <[email protected]>
Date:   Mon Apr 16 11:08:28 2012 -0700

    Carp.t: Avoid quotes in runperl prog
-----------------------------------------------------------------------

Summary of changes:
 dist/Carp/t/Carp.t |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/Carp/t/Carp.t b/dist/Carp/t/Carp.t
index 0ef5921..815139d 100644
--- a/dist/Carp/t/Carp.t
+++ b/dist/Carp/t/Carp.t
@@ -433,11 +433,11 @@ is $@, "heek at ".__FILE__." line ".(__LINE__-2).", 
<DATA> line 2.\n",
 like(
   runperl(
     prog => q<
-      open FH, "Makefile.PL";
+      open FH, q-Makefile.PL-;
       <FH>;  # set PL_last_in_gv
       BEGIN { *CORE::GLOBAL::die = sub { die Carp::longmess(@_) } };
       use Carp;
-      die 'fumpts';
+      die fumpts;
     >,
   ),
   qr 'fumpts',

--
Perl5 Master Repository

Reply via email to