can result in a skipped test coming out wrong: e.g.
http://www.cpantesters.org/cpan/report/
5846c0a8-d12c-11e4-9cf9-0ad4a10b8abb
http://www.cpantesters.org/cpan/report/
fb6132f2-be7e-11e4-883f-3fda4ebb7ab2
Revision history for {{$dist->name}}
{{$NEXT}}
+ - fix optional test of interaction with B::C that sometimes invalidly
+ failed
0.12 2014-09-04 07:28:59Z
- fix licence in LICENSE and pod
use Devel::CheckBin;
plan skip_all => 'perlcc required' unless can_run('perlcc');
+plan tests => 1;
+
my $f = "t/rt96893x.pl";
open my $fh, ">", $f; END { unlink $f if $f }
print $fh 'use Sub::Name; subname("main::bar", sub{42}); print "ok 1\n";';
system($^X, qw(-Mblib -S perlcc -O3 -UCarp -UConfig -r), $f);
unlink "t/rt96893x", "t/rt96893x.exe";
-
-done_testing;
# vim: ft=perl