diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-29 14:08:21 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-29 14:08:21 +0000 |
commit | 87cec682fa689adeda22b6a3bf558ee0a8f0df4f (patch) | |
tree | 90b5ef0bde175197468564a636b0c38ea5cd6b7b | |
parent | a26bfc4071db8f95dd7f276153f0e66ae359b9aa (diff) | |
download | perl-87cec682fa689adeda22b6a3bf558ee0a8f0df4f.tar.gz |
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
-rw-r--r-- | lib/Dumpvalue.t | 1 |
1 files changed, 1 insertions, 0 deletions
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 ); |