summaryrefslogtreecommitdiff
path: root/t/op/append.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-10-14 18:52:21 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-10-14 18:52:21 +0000
commitda450f52bd6555c7fd68afd19eff90c6c66c5641 (patch)
tree4346bd3cd6ea657335f6abb7760d1b09dad4d95e /t/op/append.t
parent8b72f7e28da640539ef4d33ffdf1db08c772d231 (diff)
downloadperl-da450f52bd6555c7fd68afd19eff90c6c66c5641.tar.gz
Add test for bug id 20000427.003 (which seems to have
been fixed) (also duplicate as 20000427.004, though with a higher severity). Move one utf8 from op/append to pragma/utf8, tag the tests with bug ids. p4raw-id: //depot/perl@7232
Diffstat (limited to 't/op/append.t')
-rwxr-xr-xt/op/append.t10
1 files changed, 1 insertions, 9 deletions
diff --git a/t/op/append.t b/t/op/append.t
index 972d32178b..afaf6a1d41 100755
--- a/t/op/append.t
+++ b/t/op/append.t
@@ -2,7 +2,7 @@
# $RCSfile: append.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:36 $
-print "1..14\n";
+print "1..13\n";
$a = 'ab' . 'c'; # compile time
$b = 'def';
@@ -54,11 +54,3 @@ if ($_ eq 'abcdef') {print "ok 3\n";} else {print "not ok 3\n";}
my $t8 = $u; $t8 = $ub . $t8;
print $t8 =~ /b/ ? "ok 13\n" : "not ok 13\t# $t8\n";
}
-
-# test that undef left and right of utf8 results in a valid string
-{
- my $a;
- $a .= "\x{1ff}";
- print $a eq "\x{1ff}" ? "ok 14\n" :
- "not ok 14\t# (undef.0x1ff) ne (0x1ff)\n";
-}