I'm trying to install padre form my perlbrew environment but it keeps
failing on dependency Debug::Client please see below:-
petera@cartman:~/Downloads/Debug-Client-0.12$ uname -a
Linux cartman 3.0.0-12-generic #20-Ubuntu SMP Fri Oct 7 14:56:25 UTC
2011 x86_64 x86_64 x86_64 GNU/Linux
petera@cartman:~/Downloads/Debug-Client-0.12$ perl -v
This is perl 5, version 15, subversion 4 (v5.15.4) built for
x86_64-linux-gnu-thread-multi
....
And the build log:-
petera@cartman:~/Downloads$ cd Debug-Client-0.12
petera@cartman:~/Downloads/Debug-Client-0.12$ ls
Changes eg inc lib Makefile.PL MANIFEST META.yml README t
petera@cartman:~/Downloads/Debug-Client-0.12$ perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for Debug::Client
Writing MYMETA.yml and MYMETA.json
petera@cartman:~/Downloads/Debug-Client-0.12$ make
cp lib/Debug/Client.pm blib/lib/Debug/Client.pm
Manifying blib/man3/Debug::Client.3
petera@cartman:~/Downloads/Debug-Client-0.12$ vim README
petera@cartman:~/Downloads/Debug-Client-0.12$ make test
PERL_DL_NONLAZY=1
/home/petera/perl5/perlbrew/perls/perl-5.15.4/bin/perl5.15.4
"-MExtUtils::Command::MM" "-e" "test_harness(0, 'inc', 'blib/lib',
'blib/arch')" t/*.t
t/00-internal.t ....... ok
t/01-add.t ............ # PID 7959
t/01-add.t ............ ok
t/02-sub-step_out.t ... ok
t/02-sub-step_over.t .. ok
t/02-sub.t ............ ok
t/03-return.t ......... ok
t/04-run.t ............ ok
t/04-run_to_line.t .... 1/5
# Failed test 'line 17'
# at t/04-run_to_line.t line 42.
# Compared $data->[0]
# got : '<TERMINATED>'
# expect : 'main::f'
# Debugged program terminated. Use q to quit or R to restart,
# use o inhibit_exit to avoid stopping after program termination,
# h q, h R or h o to get additional info.
# DB<2>
t/04-run_to_line.t .... 5/5
# Failed test at t/04-run_to_line.t line 53.
# 'Use `q' to quit or `R' to restart. `h q' for details.
# DB<2> '
# doesn't match '(?^:Debugged program terminated)'
# Looks like you failed 2 tests of 5.
t/04-run_to_line.t .... Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/5 subtests
t/04-run_to_sub.t ..... 1/5
# Failed test 'line 16'
# at t/04-run_to_sub.t line 42.
# Compared $data->[0]
# got : '<TERMINATED>'
# expect : 'main::f'
# Debugged program terminated. Use q to quit or R to restart,
# use o inhibit_exit to avoid stopping after program termination,
# h q, h R or h o to get additional info.
# DB<2>
# Failed test at t/04-run_to_sub.t line 53.
# 'Use `q' to quit or `R' to restart. `h q' for details.
# DB<2> '
# doesn't match '(?^:Debugged program terminated)'
# Looks like you failed 2 tests of 5.
t/04-run_to_sub.t ..... Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/5 subtests
t/05-execute.t ........ ok
t/06-breakpoint.t ..... ok
t/07-quit.t ........... ok
t/08-recursive.t ...... 17/42
# Failed test 'line 10'
# at t/08-recursive.t line 110.
# Compared $data->[0]
# got : 'main::fibx'
# expect : 'main::fib'
# main::fibx(t/eg/04-fib.pl:17): my $n = shift;
# DB<4>
# Failed test 'stack trace'
# at t/08-recursive.t line 120.
# Compared $data->[0]
# got : '$ = main::fibx(8) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(9) called from file `t/eg/04-fib.pl' line 18
# $ = main::fibx(9) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(10) called from file `t/eg/04-fib.pl' line 22'
# expect : '$ = main::fib(9) called from file `t/eg/04-fib.pl' line 18
# $ = main::fibx(9) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(10) called from file `t/eg/04-fib.pl' line 22'
# $ = main::fibx(8) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(9) called from file `t/eg/04-fib.pl' line 18
# $ = main::fibx(9) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(10) called from file `t/eg/04-fib.pl' line 22
# DB<4>
# Failed test 'stack trace in scalar context'
# at t/08-recursive.t line 123.
# got: '$ = main::fibx(8) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(9) called from file `t/eg/04-fib.pl' line 18
# $ = main::fibx(9) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(10) called from file `t/eg/04-fib.pl' line 22'
# expected: '$ = main::fib(9) called from file `t/eg/04-fib.pl' line 18
# $ = main::fibx(9) called from file `t/eg/04-fib.pl' line 12
# $ = main::fib(10) called from file `t/eg/04-fib.pl' line 22'
# Failed test 'list_break_wath_action'
# at t/08-recursive.t line 133.
# got: 't/eg/04-fib.pl:
# 10: return 0 if $n == 0;
# break if (;9)
# 17: my $n = shift;
# break if (1)
# DB<> '
# expected: 't/eg/04-fib.pl:
# 10: return 0 if $n == 0;
# 17: my $n = shift;
# break if (1)
# DB<> '
# Failed test 'list_break_wath_action'
# at t/08-recursive.t line 145.
# got: 't/eg/04-fib.pl:
# 10: return 0 if $n == 0;
# break if (;9)
# DB<> '
# expected: 't/eg/04-fib.pl:
# 10: return 0 if $n == 0;
# DB<> '
# Failed test 'list_break_wath_action'
# at t/08-recursive.t line 162.
# got: 't/eg/04-fib.pl:
# 10: return 0 if $n == 0;
# break if (;9)
# 23: print "$res\n";
# break if (1)
# DB<> '
# expected: 't/eg/04-fib.pl:
# 10: return 0 if $n == 0;
# 23: print "$res\n";
# break if (1)
# DB<> '
# Looks like you failed 6 tests of 42.
t/08-recursive.t ...... Dubious, test returned 6 (wstat 1536, 0x600)
Failed 6/42 subtests
t/09-io.t ............. # Dir '/tmp/awRQ2kbgw7' Path '/tmp/awRQ2kbgw7'
t/09-io.t ............. 1/23 # Perl version '5.015004'
t/09-io.t ............. ok
t/12-package.t ........ # PID 8026
t/12-package.t ........ 1/1 # 0
t/12-package.t ........ ok
t/99-perldb.t ......... ok
Test Summary Report
-------------------
t/04-run_to_line.t (Wstat: 512 Tests: 5 Failed: 2)
Failed tests: 4-5
Non-zero exit status: 2
t/04-run_to_sub.t (Wstat: 512 Tests: 5 Failed: 2)
Failed tests: 4-5
Non-zero exit status: 2
t/08-recursive.t (Wstat: 1536 Tests: 42 Failed: 6)
Failed tests: 17-19, 21, 24, 28
Non-zero exit status: 6
Files=16, Tests=194, 24 wallclock secs ( 0.09 usr 0.04 sys + 1.41
cusr 0.24 csys = 1.78 CPU)
Result: FAIL
Failed 3/16 test programs. 10/194 subtests failed.
make: *** [test_dynamic] Error 255
_______________________________________________
Padre-dev mailing list
Padre-dev@perlide.org
http://mail.perlide.org/mailman/listinfo/padre-dev