summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/t/lib/env-array.t
blob: d90d89226f75a1799f5a96dc76d75de93d13f9bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!./perl

$| = 1;

BEGIN {
    chdir 't' if -d 't';
    unshift @INC, '../lib';
}

if ($^O eq 'VMS') {
    print "1..11\n";
    foreach (1..11) { print "ok $_ # skipped for VMS\n"; }
    exit 0;
}

use Env  qw(@FOO);
use vars qw(@BAR);

sub array_equal
{
    my ($a, $b) = @_;
    return 0 unless scalar(@$a) == scalar(@$b);
    for my $i (0..scalar(@$a) - 1) {
	return 0 unless $a->[$i] eq $b->[$i];
    }
    return 1;
}

sub test
{
    my ($desc, $code) = @_;

    &$code;

    print "# $desc...\n";
    print "#    FOO = (", join(", ", @FOO), ")\n";
    print "#    BAR = (", join(", ", @BAR), ")\n";

    if (defined $check) { print "not " unless &$check; }
    else { print "not " unless array_equal(\@FOO, \@BAR); }

    print "ok ", ++$i, "\n";
}

print "1..11\n";

test "Assignment", sub {
    @FOO = qw(a B c);
    @BAR = qw(a B c);
};

test "Storing", sub {
    $FOO[1] = 'b';
    $BAR[1] = 'b';
};

test "Truncation", sub {
    $#FOO = 0;
    $#BAR = 0;
};

test "Push", sub {
    push @FOO, 'b', 'c';
    push @BAR, 'b', 'c';
};

test "Pop", sub {
    pop @FOO;
    pop @BAR;
};

test "Shift", sub {
    shift @FOO;
    shift @BAR;
};

test "Push", sub {
    push @FOO, 'c';
    push @BAR, 'c';
};

test "Unshift", sub {
    unshift @FOO, 'a';
    unshift @BAR, 'a';
};

test "Reverse", sub {
    @FOO = reverse @FOO;
    @BAR = reverse @BAR;
};

test "Sort", sub {
    @FOO = sort @FOO;
    @BAR = sort @BAR;
};

test "Splice", sub {
    splice @FOO, 1, 1, 'B';
    splice @BAR, 1, 1, 'B';
};
OpenPOWER on IntegriCloud