Mark Fowler wrote: > On Mon, 22 Apr 2002, saravana srinivasan wrote: > > >> I am trying to install the latest version of template toolkit (2.07)in my >>machine ( my machine runs Mandrake Linux) and I get the following error >> >>Failed 1/85 test scripts, 98.82% okay. 3/2394 subtests failed, 99.87% okay. >>make: *** [test_dynamic] Error 29 >> >>Please let me know if you need more information. > > > Can you tell us which script was failing, and which tests in that script > failed? > > If you type: > > make test TEST_VERBOSE=1 > > You should get pages on pages of the output.
It's probably better to run 'make test' and then run verbosely only the failing script. e.g make test ... PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/usr/lib/perl5/5.6.1/i386-linux -I/usr/lib/perl5/5.6.1 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t t/args.............. (let's say that this has failed) so you run: PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib \ -I/usr/lib/perl5/5.6.1/i386-linux -I/usr/lib/perl5/5.6.1 -e 'use \ Test::Harness qw(&runtests $verbose); $verbose=1; runtests @ARGV;' \ t/args.t I always copy and paste this from running 'make test' and killing it as it starts the first test. Notice $verbose=1. if you run under C-style shell, add 'env ' before the above example (assuming that you have this utility): env PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/usr/lib/perl5/5.6.1/i386-linux -I/usr/lib/perl5/5.6.1 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t t/args.............. (let's say that this has failed) __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
