From: Jarkko Hietaniemi Date: Sun, 27 Jan 2002 18:48:17 +0000 (+0000) Subject: (retracted by #14458) X-Git-Tag: accepted/trunk/20130322.191538~28247 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec99edeca004ebd491aadc20ef46c174ddc7b5a2;p=platform%2Fupstream%2Fperl.git (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 --- 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;