(retracted by #14458)
authorJarkko Hietaniemi <jhi@iki.fi>
Sun, 27 Jan 2002 18:48:17 +0000 (18:48 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 27 Jan 2002 18:48:17 +0000 (18:48 +0000)
(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

index 475df26..5e22bea 100644 (file)
@@ -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;