Skip Menu |

This queue is for tickets about the TAP-Formatter-JUnit CPAN distribution.

Report information
The Basics
Id: 112602
Status: new
Priority: 0/
Queue: TAP-Formatter-JUnit

People
Owner: Nobody in particular
Requestors: victor [...] vsespb.ru
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: crashes on "empty" test with timer option
Not sure if it's a bug, but: $ echo 1 > t.t $ prove --timer --formatter=TAP::Formatter::JUnit t.t Modification of non-creatable array value attempted, subscript -1 at /usr/local/share/perl/5.14.2/TAP/Formatter/JUnit/Session.pm line 164. does not crash on empty tests but with right output: === use Test::More; done_testing; ===
Also crashed when test failed due to compile errors $perl t2.t Global symbol "$notavar" requires explicit package name at t2.t line 2. Execution of t2.t aborted due to compilation errors. $ prove --timer --formatter=TAP::Formatter::JUnit t2.t Global symbol "$notavar" requires explicit package name at t2.t line 2. Execution of t2.t aborted due to compilation errors. Modification of non-creatable array value attempted, subscript -1 at /usr/local/share/perl/5.14.2/TAP/Formatter/JUnit/Session.pm line 164. On Tue Mar 01 12:58:07 2016, vsespb wrote: Show quoted text
> Not sure if it's a bug, but: > > $ echo 1 > t.t > $ prove --timer --formatter=TAP::Formatter::JUnit t.t > Modification of non-creatable array value attempted, subscript -1 at > /usr/local/share/perl/5.14.2/TAP/Formatter/JUnit/Session.pm line 164. > > > does not crash on empty tests but with right output: > > === > use Test::More; > done_testing; > ===