In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ff47f46246f9142bbc74ae2a4aef166a75a9deed?hp=1d0853ff6185fc3afa05d46bbcf0889abd10adec>

- Log -----------------------------------------------------------------
commit ff47f46246f9142bbc74ae2a4aef166a75a9deed
Author: Father Chrysostomos <spr...@cpan.org>
Date:   Thu Jun 16 05:36:47 2011 -0700

    Add another address for Shlomi Fish

M       Porting/checkAUTHORS.pl

commit 4cfe45a112cef5304af765ed0d8bf1b04fe9cdf5
Author: Shlomi Fish <shlomif+processed-by-p...@gmail.com>
Date:   Thu Jun 16 05:27:38 2011 -0700

    Cleanup lib/perl5db.t
    
    this is a patch to do some cleanups to lib/perl5db.t. It removes
    trailing whitespace, converts multi-line strings to here-documents,
    creates a _slurp function, localises variables, and has some other
    improvements.

M       lib/perl5db.t
-----------------------------------------------------------------------

Summary of changes:
 Porting/checkAUTHORS.pl |    1 +
 lib/perl5db.t           |  149 +++++++++++++++++++++++++---------------------
 2 files changed, 82 insertions(+), 68 deletions(-)

diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index 856a9f5..baf8601 100755
--- a/Porting/checkAUTHORS.pl
+++ b/Porting/checkAUTHORS.pl
@@ -803,6 +803,7 @@ schwab\100suse.de                       
schwab\100issan.informatik.uni-dortmund.
 sebastien\100aperghis.net               maddingue\100free.fr
 +                                       saper\100cpan.org
 shlomif\100vipe.technion.ac.il          shlomif\100iglu.org.il
++                                       shlomif+processed-by-perl\100gmail.com
 simon\100simon-cozens.org               simon\100pembro4.pmb.ox.ac.uk
 +                                       simon\100brecon.co.uk
 +                                       simon\100othersideofthe.earth.li
diff --git a/lib/perl5db.t b/lib/perl5db.t
index 2cc1ead..e275356 100644
--- a/lib/perl5db.t
+++ b/lib/perl5db.t
@@ -11,69 +11,89 @@ use warnings;
 use Config;
 
 BEGIN {
-    if (!-c "/dev/null") {
-       print "1..0 # Skip: no /dev/null\n";
-       exit 0;
+    if (! -c "/dev/null") {
+        print "1..0 # Skip: no /dev/null\n";
+        exit 0;
     }
-my $dev_tty = '/dev/tty';
-   $dev_tty = 'TT:' if ($^O eq 'VMS');
-    if (!-c $dev_tty) {
-       print "1..0 # Skip: no $dev_tty\n";
-       exit 0;
+
+    my $dev_tty = '/dev/tty';
+    $dev_tty = 'TT:' if ($^O eq 'VMS');
+    if (! -c $dev_tty) {
+        print "1..0 # Skip: no $dev_tty\n";
+        exit 0;
     }
     if ($ENV{PERL5DB}) {
-       print "1..0 # Skip: \$ENV{PERL5DB} is already set to '$ENV{PERL5DB}'\n";
-       exit 0;
+        print "1..0 # Skip: \$ENV{PERL5DB} is already set to 
'$ENV{PERL5DB}'\n";
+        exit 0;
     }
 }
 
 plan(11);
 
+my $rc_filename = '.perldb';
+
 sub rc {
-    open RC, ">", ".perldb" or die $!;
-    print RC @_;
-    close(RC);
+    open my $rc_fh, '>', $rc_filename
+        or die $!;
+    print {$rc_fh} @_;
+    close ($rc_fh);
+
     # overly permissive perms gives "Must not source insecure rcfile"
     # and hangs at the DB(1> prompt
-    chmod 0644, ".perldb";
+    chmod 0644, $rc_filename;
 }
 
-my $target = '../lib/perl5db/t/eval-line-bug';
+sub _slurp
+{
+    my $filename = shift;
 
-rc(
-    qq|
-    &parse_options("NonStop=0 TTY=db.out LineInfo=db.out");
-    \n|,
+    open my $in, '<', $filename
+        or die "Cannot open '$filename' for slurping - $!";
 
-    qq|
-    sub afterinit {
-       push(\@DB::typeahead,
-           'b 23',
-           'n',
-           'n',
-           'n',
-           'c', # line 23
-           'n',
-           "p \\\@{'main::_<$target'}",
-           'q',
-       );
-    }\n|,
-);
+    local $/;
+    my $contents = <$in>;
+
+    close($in);
+
+    return $contents;
+}
+
+my $out_fn = 'db.out';
 
+sub _out_contents
 {
-    local $ENV{PERLDB_OPTS} = "ReadLine=0";
-    runperl(switches => [ '-d' ], progfile => $target);
+    return _slurp($out_fn);
 }
 
-my $contents;
 {
-    local $/;
-    open I, "<", 'db.out' or die $!;
-    $contents = <I>;
-    close(I);
+    my $target = '../lib/perl5db/t/eval-line-bug';
+
+    rc(
+        <<"EOF",
+    &parse_options("NonStop=0 TTY=db.out LineInfo=db.out");
+
+    sub afterinit {
+        push(\@DB::typeahead,
+            'b 23',
+            'n',
+            'n',
+            'n',
+            'c', # line 23
+            'n',
+            "p \\\@{'main::_<$target'}",
+            'q',
+        );
+    }
+EOF
+    );
+
+    {
+        local $ENV{PERLDB_OPTS} = "ReadLine=0";
+        runperl(switches => [ '-d' ], progfile => $target);
+    }
 }
 
-like($contents, qr/sub factorial/,
+like(_out_contents(), qr/sub factorial/,
     'The ${main::_<filename} variable in the debugger was not destroyed'
 );
 
@@ -113,28 +133,20 @@ SKIP: {
 # Test [perl #61222]
 {
     rc(
-        qq|
+        <<'EOF',
         &parse_options("NonStop=0 TTY=db.out LineInfo=db.out");
-        \n|,
 
-        qq|
         sub afterinit {
-            push(\@DB::typeahead,
+            push(@DB::typeahead,
                 'm Pie',
                 'q',
             );
-        }\n|,
+        }
+EOF
     );
 
     my $output = runperl(switches => [ '-d' ], stderr => 1, progfile => 
'../lib/perl5db/t/rt-61222');
-    my $contents;
-    {
-        local $/;
-        open I, "<", 'db.out' or die $!;
-        $contents = <I>;
-        close(I);
-    }
-    unlike($contents, qr/INCORRECT/, "[perl #61222]");
+    unlike(_out_contents(), qr/INCORRECT/, "[perl #61222]");
 }
 
 
@@ -142,17 +154,18 @@ SKIP: {
 # Test for Proxy constants
 {
     rc(
-        qq|
-        &parse_options("NonStop=0 ReadLine=0 TTY=db.out LineInfo=db.out");
-        \n|,
+        <<'EOF',
 
-        qq|
-        sub afterinit {
-            push(\@DB::typeahead,
-                'm main->s1',
-                'q',
-            );
-        }\n|,
+&parse_options("NonStop=0 ReadLine=0 TTY=db.out LineInfo=db.out");
+
+sub afterinit {
+    push(@DB::typeahead,
+        'm main->s1',
+        'q',
+    );
+}
+
+EOF
     );
 
     my $output = runperl(switches => [ '-d' ], stderr => 1, progfile => 
'../lib/perl5db/t/proxy-constants');
@@ -185,7 +198,7 @@ EOF
             .*
         ^In\ Main\ File\.$
             .*
-        /msx, 
+        /msx,
         "Can set breakpoint in a line in the middle of the file.");
 }
 
@@ -202,7 +215,7 @@ EOF
 {
     local $ENV{PERLDB_OPTS} = "ReadLine=0 NonStop=1";
     my $output = runperl(switches => [ '-d', '-T' ], stderr => 1,
-                       progfile => '../lib/perl5db/t/taint');
+        progfile => '../lib/perl5db/t/taint');
     chomp $output if $^O eq 'VMS'; # newline guaranteed at EOF
     is($output, '[$^X][done]', "taint");
 }
@@ -232,10 +245,10 @@ EOF
         "Can set breakpoint in a line.");
 }
 
- 
+
 
 # clean up.
 
 END {
-    1 while unlink qw(.perldb db.out);
+    1 while unlink ($rc_filename, $out_fn);
 }

--
Perl5 Master Repository

Reply via email to