id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1368	Debug::Client tests fail against perl-5.15.6 (2 of n)	bowtie	bowtie	"perl-5.15.6 uses perl5db.pl v1.35

look for leading **`** against action T
{{{#!perl
Debug-Client/t/eg$ perl -d 04-fib.pl

Loading DB routines from perl5db.pl version 1.33
Editor support available.

Enter h or `h h' for help, or `man perldebug' for more help.

main::(04-fib.pl:4):	$| = 1;
                                                                                  
DB<1> s
main::(04-fib.pl:22):	my $res = fib(10);
                                                                                  
DB<1> L
                                                                                  
DB<1> b fibx
                                                                                  
DB<2> L 
04-fib.pl:
 17:	    my $n = shift;
   break if (1)
                                                                                  
DB<2> c
main::fibx(04-fib.pl:17):	    my $n = shift;
                                                                                  
DB<2> T
$ = main::fibx(9) called from file `04-fib.pl' line 12
$ = main::fib(10) called from file `04-fib.pl' line 22
                                                                                  
DB<2>
}}}

now look for leading **'** against action T it's bean fixed :)

{{{#!perl
Loading DB routines from perl5db.pl version 1.35
Editor support available.

Enter h or 'h h' for help, or 'man perldebug' for more help.

main::(04-fib.pl:4):	$| = 1;
                                                                                  
DB<1> s
main::(04-fib.pl:22):	my $res = fib(10);
                                                                                  
DB<1> L
                                                                                  
DB<1> b fibx
                                                                                  
DB<2> L
04-fib.pl:
 17:	    my $n = shift;
   break if (1)
                                                                                  
DB<2> c
                                                                                  
DB<2> T
$ = main::fibx(9) called from file '04-fib.pl' line 12
$ = main::fib(10) called from file '04-fib.pl' line 22
                                                                                  
DB<2>
}}}

also note it's bean fixed every-ware, cool

I will fix shortly, hope this helps illuminate the issue, if you see test errors you can just force in most cases.
"	defect	closed	major		Debug::Client	0.93	fixed		azawawi
