From 87cec682fa689adeda22b6a3bf558ee0a8f0df4f Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Mon, 29 Oct 2001 14:08:21 +0000 Subject: The test (and the module) would require some 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Dumpvalue.t b/lib/Dumpvalue.t index 7c1d803021..4b6543dc8b 100644 --- a/lib/Dumpvalue.t +++ b/lib/Dumpvalue.t @@ -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 ); -- cgit v1.2.1