summaryrefslogtreecommitdiff
path: root/ext/B/t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-09-10 16:40:17 +0000
committerNicholas Clark <nick@ccl4.org>2004-09-10 16:40:17 +0000
commite77e2f143f073d08d6764e30771960b2bccde0db (patch)
tree0f19e28e4f1fc9d4810bd912bc8078bdf1f42051 /ext/B/t
parentf5ba13079587260a0b8a2a6958a44e80adc29fe2 (diff)
downloadperl-e77e2f143f073d08d6764e30771960b2bccde0db.tar.gz
Integrate:
[ 23318] Update the skips for the no perlio case p4raw-link: @23318 on //depot/maint-5.8/perl: cacd0da5c2bc20390f0d85d7dcca7be08a68b40d p4raw-id: //depot/perl@23319 p4raw-integrated: from //depot/maint-5.8/perl@23300 'copy in' ext/B/t/showlex.t (@23288..) ext/B/t/optree_check.t ext/B/t/optree_concise.t (@23290..)
Diffstat (limited to 'ext/B/t')
-rw-r--r--ext/B/t/optree_check.t2
-rw-r--r--ext/B/t/optree_concise.t2
-rwxr-xr-xext/B/t/showlex.t6
3 files changed, 8 insertions, 2 deletions
diff --git a/ext/B/t/optree_check.t b/ext/B/t/optree_check.t
index 7c862918ae..c71cd7e28e 100644
--- a/ext/B/t/optree_check.t
+++ b/ext/B/t/optree_check.t
@@ -28,7 +28,7 @@ use Config;
plan tests => 5 + 18 + 14 * $gOpts{selftest}; # fudged
SKIP: {
- skip "no perlio in this build", 5 + 19 + 14 * $gOpts{selftest}
+ skip "no perlio in this build", 5 + 18 + 14 * $gOpts{selftest}
unless $Config::Config{useperlio};
diff --git a/ext/B/t/optree_concise.t b/ext/B/t/optree_concise.t
index b27440933c..856f4c6788 100644
--- a/ext/B/t/optree_concise.t
+++ b/ext/B/t/optree_concise.t
@@ -17,7 +17,7 @@ use Config;
plan tests => 23;
SKIP: {
-skip "no perlio in this build", 24 unless $Config::Config{useperlio};
+skip "no perlio in this build", 23 unless $Config::Config{useperlio};
$SIG{__WARN__} = sub {
my $err = shift;
diff --git a/ext/B/t/showlex.t b/ext/B/t/showlex.t
index b99cf162f1..850254e2a9 100755
--- a/ext/B/t/showlex.t
+++ b/ext/B/t/showlex.t
@@ -59,6 +59,10 @@ like ($out, qr/2: $nb/ms, 'found $b in "my ($a,$b)"');
print $out if $verbose;
+SKIP: {
+ skip "no perlio in this build", 5
+ unless $Config::Config{useperlio};
+
our $buf = 'arb startval';
my $ak = B::Showlex::walk_output (\$buf);
@@ -105,3 +109,5 @@ $walker->();
print $buf if $verbose;
+
+}