changelog for Devel::CheckBin prereq change
[p5sagit/Sub-Name.git] / t / RT96893_perlcc.t
index 255394a..1c5b3db 100644 (file)
@@ -9,6 +9,13 @@ plan skip_all => 'B::C required for testing perlcc -O3'
 plan skip_all => "B::C is too old (require 1.48, have $B::C::VERSION)"
     unless eval { B::C->VERSION('1.48') };
 
+plan skip_all => 'Devel::CheckBin required for looking for a perlcc executable'
+    unless eval 'require Devel::CheckBin';
+
+plan skip_all => 'perlcc required' unless Devel::CheckBin::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";';
@@ -17,6 +24,4 @@ close $fh;
 system($^X, qw(-Mblib -S perlcc -O3 -UCarp -UConfig -r), $f);
 
 unlink "t/rt96893x", "t/rt96893x.exe";
-
-done_testing;
 # vim: ft=perl