This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Test case for C<undef %File::Glob::>
[perl5.git] / t / op / append.t
1 #!./perl
2
3 # $RCSfile: append.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:36 $
4
5 print "1..13\n";
6
7 $a = 'ab' . 'c';        # compile time
8 $b = 'def';
9
10 $c = $a . $b;
11 print "#1\t:$c: eq :abcdef:\n";
12 if ($c eq 'abcdef') {print "ok 1\n";} else {print "not ok 1\n";}
13
14 $c .= 'xyz';
15 print "#2\t:$c: eq :abcdefxyz:\n";
16 if ($c eq 'abcdefxyz') {print "ok 2\n";} else {print "not ok 2\n";}
17
18 $_ = $a;
19 $_ .= $b;
20 print "#3\t:$_: eq :abcdef:\n";
21 if ($_ eq 'abcdef') {print "ok 3\n";} else {print "not ok 3\n";}
22
23 # test that when right argument of concat is UTF8, and is the same
24 # variable as the target, and the left argument is not UTF8, it no
25 # longer frees the wrong string.
26 {
27     sub r2 {
28         my $string = '';
29         $string .= pack("U0a*", 'mnopqrstuvwx');
30         $string = "abcdefghijkl$string";
31     }
32
33     r2() and print "ok $_\n" for qw/ 4 5 /;
34 }
35
36 # test that nul bytes get copied
37 {
38 # Character 'b' occurs at codepoint 130 decimal or \202 octal
39 # under an EBCDIC coded character set.
40 #    my($a, $ab) = ("a", "a\000b");
41     my($a, $ab) = ("\141", "\141\000\142");
42     my($u, $ub) = map pack("U0a*", $_), $a, $ab;
43     my $t1 = $a; $t1 .= $ab;
44     print $t1 =~ /\142/ ? "ok 6\n" : "not ok 6\t# $t1\n";
45     my $t2 = $a; $t2 .= $ub;
46     print $t2 =~ /\142/ ? "ok 7\n" : "not ok 7\t# $t2\n";
47     my $t3 = $u; $t3 .= $ab;
48     print $t3 =~ /\142/ ? "ok 8\n" : "not ok 8\t# $t3\n";
49     my $t4 = $u; $t4 .= $ub;
50     print $t4 =~ /\142/ ? "ok 9\n" : "not ok 9\t# $t4\n";
51     my $t5 = $a; $t5 = $ab . $t5;
52     print $t5 =~ /\142/ ? "ok 10\n" : "not ok 10\t# $t5\n";
53     my $t6 = $a; $t6 = $ub . $t6;
54     print $t6 =~ /\142/ ? "ok 11\n" : "not ok 11\t# $t6\n";
55     my $t7 = $u; $t7 = $ab . $t7;
56     print $t7 =~ /\142/ ? "ok 12\n" : "not ok 12\t# $t7\n";
57     my $t8 = $u; $t8 = $ub . $t8;
58     print $t8 =~ /\142/ ? "ok 13\n" : "not ok 13\t# $t8\n";
59 }