Ticket #1368 (closed defect: fixed)
Debug::Client tests fail against perl-5.15.6 (2 of n)
| Reported by: | bowtie | Owned by: | bowtie |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Debug::Client | Version: | 0.93 |
| Keywords: | Cc: | azawawi |
Description
perl-5.15.6 uses perl5db.pl v1.35
look for leading ` against action T
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 :)
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.
Change History
Note: See
TracTickets for help on using
tickets.

Debug-Client 0.17_04 test code, now happy with perl5db.pl v1.35 and will install with out error.
As for using @list requests these will give spurious errors.
in other words Debug2 works with perl up to 5.15.5 at present.