summaryrefslogtreecommitdiff
path: root/ext/B/t/optree_varinit.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/B/t/optree_varinit.t')
-rw-r--r--ext/B/t/optree_varinit.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/B/t/optree_varinit.t b/ext/B/t/optree_varinit.t
index e8eb8720e0..25129793f3 100644
--- a/ext/B/t/optree_varinit.t
+++ b/ext/B/t/optree_varinit.t
@@ -6,8 +6,11 @@ BEGIN {
require './test.pl';
}
use OptreeCheck;
-
+use Config;
plan tests => 22;
+SKIP: {
+skip "no perlio in this build", 22 unless $Config::Config{useperlio};
+
pass("OPTIMIZER TESTS - VAR INITIALIZATION");
checkOptree ( name => 'sub {my $a}',
@@ -378,5 +381,7 @@ EOT_EOT
# 8 <@> leave[1 ref] vKP/REFC
EONT_EONT
+} #skip
+
__END__