On 2006-02-24, Chris Hagglund <[EMAIL PROTECTED]> wrote:
>
> [EMAIL PROTECTED] CGI-Application-4.04]# make test
> PERL_DL_NONLAZY=1 /usr/local/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/01cgiapp..................ok
> t/02mailform................ok
> t/03prerun..................ok
> t/04getquery................ok
> t/05arrayrefmodes...........ok
> t/06enhancement31...........ok
> t/07postrun.................ok
> t/09zerorm..................ok
> t/10errormode...............ok
> t/11callbacks...............ok
> t/load_tmpl_hook............ok 2/0Error executing run mode 'start': 
> Illegal division by zero at (eval 4) line 12.
> at t/load_tmpl_hook.t line 23
> # Looks like your test died just after 2.
> t/load_tmpl_hook............dubious
>        Test returned status 255 (wstat 65280, 0xff00)
>        after all the subtests completed successfully

That's interesting.  Add this to the top of t/load_tmpl_hook.t to help
nail down where the error is coming from:

    use Carp;
    $SIG{__WARN__} = \&carp;
    $SIG{__DIE__} = \&confess;

    Mark

-- 
http://mark.stosberg.com/ 


---------------------------------------------------------------------
Web Archive:  http://www.mail-archive.com/cgiapp@lists.erlbaum.net/
              http://marc.theaimsgroup.com/?l=cgiapp&r=1&w=2
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to