diff options
author | Peter Prymmer <PPrymmer@factset.com> | 2001-02-22 05:23:59 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-23 01:58:20 +0000 |
commit | 2fa10d08630a00c5a589cdded0138b45712a5fb4 (patch) | |
tree | 783541f212e6cad1ec4bfa49ad6bb5a9042f343e | |
parent | 0e939f409f17bc36c191bed88131438bcced2759 (diff) | |
download | perl-2fa10d08630a00c5a589cdded0138b45712a5fb4.tar.gz |
treat unicoding and null bytes in op/append.t
Message-ID: <Pine.OSF.4.10.10102221319460.47500-100000@aspara.forte.com>
p4raw-id: //depot/perl@8907
-rwxr-xr-x | t/op/append.t | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/t/op/append.t b/t/op/append.t index afaf6a1d41..5aa4bf9007 100755 --- a/t/op/append.t +++ b/t/op/append.t @@ -35,22 +35,25 @@ if ($_ eq 'abcdef') {print "ok 3\n";} else {print "not ok 3\n";} # test that nul bytes get copied { - my($a, $ab) = ("a", "a\000b"); +# Character 'b' occurs at codepoint 130 decimal or \202 octal +# under an EBCDIC coded character set. +# my($a, $ab) = ("a", "a\000b"); + my($a, $ab) = ("\141", "\141\000\142"); my($u, $ub) = map pack("U0a*", $_), $a, $ab; my $t1 = $a; $t1 .= $ab; - print $t1 =~ /b/ ? "ok 6\n" : "not ok 6\t# $t1\n"; + print $t1 =~ /\142/ ? "ok 6\n" : "not ok 6\t# $t1\n"; my $t2 = $a; $t2 .= $ub; - print $t2 =~ /b/ ? "ok 7\n" : "not ok 7\t# $t2\n"; + print $t2 =~ /\142/ ? "ok 7\n" : "not ok 7\t# $t2\n"; my $t3 = $u; $t3 .= $ab; - print $t3 =~ /b/ ? "ok 8\n" : "not ok 8\t# $t3\n"; + print $t3 =~ /\142/ ? "ok 8\n" : "not ok 8\t# $t3\n"; my $t4 = $u; $t4 .= $ub; - print $t4 =~ /b/ ? "ok 9\n" : "not ok 9\t# $t4\n"; + print $t4 =~ /\142/ ? "ok 9\n" : "not ok 9\t# $t4\n"; my $t5 = $a; $t5 = $ab . $t5; - print $t5 =~ /b/ ? "ok 10\n" : "not ok 10\t# $t5\n"; + print $t5 =~ /\142/ ? "ok 10\n" : "not ok 10\t# $t5\n"; my $t6 = $a; $t6 = $ub . $t6; - print $t6 =~ /b/ ? "ok 11\n" : "not ok 11\t# $t6\n"; + print $t6 =~ /\142/ ? "ok 11\n" : "not ok 11\t# $t6\n"; my $t7 = $u; $t7 = $ab . $t7; - print $t7 =~ /b/ ? "ok 12\n" : "not ok 12\t# $t7\n"; + print $t7 =~ /\142/ ? "ok 12\n" : "not ok 12\t# $t7\n"; my $t8 = $u; $t8 = $ub . $t8; - print $t8 =~ /b/ ? "ok 13\n" : "not ok 13\t# $t8\n"; + print $t8 =~ /\142/ ? "ok 13\n" : "not ok 13\t# $t8\n"; } |