Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Devel-ebug CPAN distribution.

Report information
The Basics
Id: 22837
Status: resolved
Priority: 0/
Queue: Devel-ebug

People
Owner: Nobody in particular
Requestors: alexchorny [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.46
Fixed in: (no value)



Subject: partial patch: Win32 problems
ActiveState perl v5.8.7 built for MSWin32-x86-multi-thread Binary build 813 Wrote patch for stack.t. With this patch, tests pass on Vanilla Perl. But 2 other tests fail on ActiveState Perl, primarily due to 'sitecustomize.pl' which is included automatically. Error log is attached. ------- Alexandr Ciornii, http://chorny.net
Subject: stack.t.patch
--- stack.t.dist Mon Mar 6 22:56:25 2006 +++ stack.t Mon Nov 6 10:47:12 2006 @@ -4,6 +4,7 @@ use lib 'lib'; use Test::More tests => 29; use Devel::ebug; +use File::Spec; my $ebug = Devel::ebug->new; $ebug->program("t/calc.pl"); @@ -18,10 +19,9 @@ is(scalar(@trace), 1); # use YAML; warn Dump \@trace; - my $trace = $trace[0]; is($trace->package , "main"); -is($trace->filename , "t/calc.pl"); +is($trace->filename , File::Spec->catfile('t','calc.pl'), "trace is on correct file name"); is($trace->subroutine, "main::add"); is($trace->wantarray , 0); is($trace->line , 5);
Subject: errlog
Download errlog
application/octet-stream 1.5k

Message body not shown because it is not plain text.

On Nov 06 04:13:06 2006, alexchorny/gmail.com wrote: Show quoted text
> But 2 other tests fail on ActiveState Perl, primarily due to > 'sitecustomize.pl' which is included automatically.
Is not ActiveState-only bug. To checks for this $Config{'usesitecustomize"} should be used. -- Alexandr Ciornii, http://chorny.net
I believe this is fixed in recent Devel::ebug versions. I'm going through and closing old (fixed) tickets -- feel free to re-open or re-submit if it is still a problem. Thanks! --Brock On Mon Apr 30 10:00:44 2007, CHORNY wrote: Show quoted text
> On Nov 06 04:13:06 2006, alexchorny/gmail.com wrote: >
> > But 2 other tests fail on ActiveState Perl, primarily due to > > 'sitecustomize.pl' which is included automatically.
> > Is not ActiveState-only bug. To checks for this > $Config{'usesitecustomize"} should be used. >