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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
#!./perl -w
# use strict;
print "1..26\n";
my $test = 1;
sub ok {
my ($pass, $wrong, $err) = @_;
if ($pass) {
print "ok $test\n";
$test = $test + 1; # Would be doubleplusbad to use ++ in the ++ test.
return 1;
} else {
if ($err) {
chomp $err;
print "not ok $test # $err\n";
} else {
if (defined $wrong) {
$wrong = ", got $wrong";
} else {
$wrong = '';
}
printf "not ok $test # line %d$wrong\n", (caller)[2];
}
}
$test = $test + 1;
return;
}
# Verify that addition/subtraction properly upgrade to doubles.
# These tests are only significant on machines with 32 bit longs,
# and two's complement negation, but shouldn't fail anywhere.
my $a = 2147483647;
my $c=$a++;
ok ($a == 2147483648, $a);
$a = 2147483647;
$c=++$a;
ok ($a == 2147483648, $a);
$a = 2147483647;
$a=$a+1;
ok ($a == 2147483648, $a);
$a = -2147483648;
$c=$a--;
ok ($a == -2147483649, $a);
$a = -2147483648;
$c=--$a;
ok ($a == -2147483649, $a);
$a = -2147483648;
$a=$a-1;
ok ($a == -2147483649, $a);
$a = 2147483648;
$a = -$a;
$c=$a--;
ok ($a == -2147483649, $a);
$a = 2147483648;
$a = -$a;
$c=--$a;
ok ($a == -2147483649, $a);
$a = 2147483648;
$a = -$a;
$a=$a-1;
ok ($a == -2147483649, $a);
$a = 2147483648;
$b = -$a;
$c=$b--;
ok ($b == -$a-1, $a);
$a = 2147483648;
$b = -$a;
$c=--$b;
ok ($b == -$a-1, $a);
$a = 2147483648;
$b = -$a;
$b=$b-1;
ok ($b == -(++$a), $a);
$a = undef;
ok ($a++ eq '0', do { $a=undef; $a++ }, "postinc undef returns '0'");
$a = undef;
ok (!defined($a--), do { $a=undef; $a-- }, "postdec undef returns undef");
# Verify that shared hash keys become unshared.
sub check_same {
my ($orig, $suspect) = @_;
my $fail;
while (my ($key, $value) = each %$suspect) {
if (exists $orig->{$key}) {
if ($orig->{$key} ne $value) {
print "# key '$key' was '$orig->{$key}' now '$value'\n";
$fail = 1;
}
} else {
print "# key '$key' is '$orig->{$key}', unexpect.\n";
$fail = 1;
}
}
foreach (keys %$orig) {
next if (exists $suspect->{$_});
print "# key '$_' was '$orig->{$_}' now missing\n";
$fail = 1;
}
ok (!$fail);
}
my (%orig) = my (%inc) = my (%dec) = my (%postinc) = my (%postdec)
= (1 => 1, ab => "ab");
my %up = (1=>2, ab => 'ac');
my %down = (1=>0, ab => -1);
foreach (keys %inc) {
my $ans = $up{$_};
my $up;
eval {$up = ++$_};
ok ((defined $up and $up eq $ans), $up, $@);
}
check_same (\%orig, \%inc);
foreach (keys %dec) {
my $ans = $down{$_};
my $down;
eval {$down = --$_};
ok ((defined $down and $down eq $ans), $down, $@);
}
check_same (\%orig, \%dec);
foreach (keys %postinc) {
my $ans = $postinc{$_};
my $up;
eval {$up = $_++};
ok ((defined $up and $up eq $ans), $up, $@);
}
check_same (\%orig, \%postinc);
foreach (keys %postdec) {
my $ans = $postdec{$_};
my $down;
eval {$down = $_--};
ok ((defined $down and $down eq $ans), $down, $@);
}
check_same (\%orig, \%postdec);
|