summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2021-08-04 13:58:13 +0100
committerDavid Mitchell <davem@iabyn.com>2021-08-04 13:58:13 +0100
commit972308c27284b5430c2af7fd58f80f5197a0f095 (patch)
tree83faf397e9ea576bf2295e361451bc9074bfdc55 /cpan
parentc712ff8ffbcbb1c8d925ce7e66b98a8920699314 (diff)
downloadperl-972308c27284b5430c2af7fd58f80f5197a0f095.tar.gz
Text::Tabs: skip failing test file for now
This was causing smokes to fail: $ PERLIO=stdio ./perl -Ilib cpan/Text-Tabs/t/dnsparks.t -T and -B not implemented on filehandles at cpan/Text-Tabs/t/dnsparks.t line 130
Diffstat (limited to 'cpan')
-rw-r--r--cpan/Text-Tabs/t/dnsparks.t9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpan/Text-Tabs/t/dnsparks.t b/cpan/Text-Tabs/t/dnsparks.t
index 2e6e6aeaa2..2f8bc16454 100644
--- a/cpan/Text-Tabs/t/dnsparks.t
+++ b/cpan/Text-Tabs/t/dnsparks.t
@@ -1,6 +1,15 @@
use strict; use warnings;
BEGIN {
+ # XXX workaround for bleadperl smokes using PERLIO=stdio:
+ #
+ # $ PERLIO=stdio ./perl -Ilib cpan/Text-Tabs/t/dnsparks.t
+ # -T and -B not implemented on filehandles at cpan/Text-Tabs/t/dnsparks.t line 130
+
+ if ($ENV{PERLIO} eq 'stdio') {
+ print "1..0 # Skipped: stdio not supported\n";
+ exit;
+ }
if ($ENV{HARNESS_ACTIVE}) {
print "1..0 # Skipped: not a regression test\n";
exit;