Skip Menu |

This queue is for tickets about the Test-Tester CPAN distribution.

Report information
The Basics
Id: 54766
Status: open
Priority: 0/
Queue: Test-Tester

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.107
Fixed in: (no value)



Subject: non-shared $Prem_Diag
Codereview revelied to me what looks like a copy&paste mistake, non-shared $Prem_Diag. diff -bu ./lib/Test/Tester/Capture.pm~ ./lib/Test/Tester/Capture.pm --- ./lib/Test/Tester/Capture.pm~ 2008-03-01 22:13:35.000000000 +0000 +++ ./lib/Test/Tester/Capture.pm 2010-02-18 18:00:37.104500000 +0000 @@ -23,7 +23,7 @@ my $Curr_Test = 0; share($Curr_Test); my @Test_Results = (); share(@Test_Results); -my $Prem_Diag = {diag => ""}; share($Curr_Test); +my $Prem_Diag = {diag => ""}; share($Prem_Diag); sub new {
Subject: Re: [rt.cpan.org #54766] non-shared $Prem_Diag
Date: Thu, 18 Feb 2010 18:06:49 +0000
To: bug-Test-Tester [...] rt.cpan.org
From: Fergal Daly <fergal [...] esatclear.ie>
thanks, I'll apply that at the weekend, F On 18 February 2010 18:03, Reini Urban via RT <bug-Test-Tester@rt.cpan.org> wrote: Show quoted text
> Thu Feb 18 13:03:49 2010: Request 54766 was acted upon. > Transaction: Ticket created by rurban@x-ray.at >       Queue: Test-Tester >     Subject: non-shared $Prem_Diag >   Broken in: 0.107 >    Severity: (no value) >       Owner: Nobody >  Requestors: rurban@x-ray.at >      Status: new >  Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=54766 > > > > Codereview revelied to me what looks like a copy&paste mistake, > non-shared $Prem_Diag. > > > diff -bu ./lib/Test/Tester/Capture.pm~ ./lib/Test/Tester/Capture.pm > --- ./lib/Test/Tester/Capture.pm~       2008-03-01 22:13:35.000000000 > +0000 > +++ ./lib/Test/Tester/Capture.pm        2010-02-18 18:00:37.104500000 > +0000 > @@ -23,7 +23,7 @@ > >  my $Curr_Test = 0;      share($Curr_Test); >  my @Test_Results = ();  share(@Test_Results); > -my $Prem_Diag = {diag => ""};   share($Curr_Test); > +my $Prem_Diag = {diag => ""};   share($Prem_Diag); > >  sub new >  { > >