From ec99edeca004ebd491aadc20ef46c174ddc7b5a2 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sun, 27 Jan 2002 18:48:17 +0000 Subject: [PATCH] (retracted by #14458) (Russ Allbery) OS/390 is using a high-bit character for ESC, skip the test for now. A better fix would be to override the notion of the platform's escape sequence in the test of Pod::Text::Termcap. We may have to apply a filter to the output to substitute back in the ESC character that the test expects, but only on OS/390. p4raw-id: //depot/perl@14448 --- lib/Pod/t/basic.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Pod/t/basic.t b/lib/Pod/t/basic.t index 475df26..5e22bea 100644 --- a/lib/Pod/t/basic.t +++ b/lib/Pod/t/basic.t @@ -101,6 +101,8 @@ for (sort keys %translators) { if ($master eq $output) { print "ok $n\n"; unlink "out.$translators{$_}"; + } elsif ($^O eq 'os390' && $translators{$_} eq 'cap') { + print "ok $n # Skip: $^O is using a high-bit character for ESC\n"; } else { my @master = split m/[\r\n]+/, $master; my @output = split m/[\r\n]+/, $output; -- 2.7.4