Jerome has identified an issue with the language testing patch - turns out that perl6's test suite has carnal knowledge about Parrot::Test. One of the changes I made to Parrot::Test broke the perl6 test suite.
The following bits of the Parrot::Test patch need to be reversed, which then keeps the perl6 test suite happy, and should remove the last /showstopper/ to applying the patch.
- my ($assembly,$directory,$count, $as_f) = @_; + my ($assembly,$count, $as_f) = @_;
- $pbc_generator->( $assembly, $directory, $count, $as_f ); + $pbc_generator->( $assembly, $count, $as_f );
--
Will "Coke" Coleda will at coleda dot com