The test (and the module) would require some
Jarkko Hietaniemi [Mon, 29 Oct 2001 14:08:21 +0000 (14:08 +0000)]
quality hacking time to work on EBCDIC.  Based on
the test results nothing seems to be majorly broken,
the module just seems to have strange assumptions:
got: ''\226\225\205'
expected: ''one'
The \226\225\205 being, of course, 'one', in EBCDIC.

p4raw-id: //depot/perl@12766

lib/Dumpvalue.t

index 7c1d803..4b6543d 100644 (file)
@@ -3,6 +3,7 @@
 BEGIN {
        chdir 't' if -d 't';
        @INC = '../lib';
+       print "1..0 # skip: EBCDIC\n" if ord('A') == 193;
 }
 
 use vars qw( $foo @bar %baz );