(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
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;