On Thu, Jun 28, 2012 at 03:54:02AM -0400, Chip Salzenberg via RT wrote:
Show quoted text> t/type_constraints/util_std_type_constraints.t seems not to output a TAP
> plan at the top.. Thus:
>
>
> t/type_constraints/util_std_type_constraints.t (Wstat: 11
> Tests: 5447 Failed: 0)
> Non-zero wait status: 11
> Parse errors: No plan found in TAP output
Not a bug. Moose uses done_testing for all of its tests, which outputs
the test plan at the end, rather than at the beginning. The issue here
is the non-zero wait status, which is indicating that the test is
segfaulting before it reaches the end (signal 11 is SEGV). This is
already reported here
https://rt.perl.org/rt3/Ticket/Display.html?id=113812 and seems to
already have been fixed.
-doy