aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/negvti2_test.zig
blob: dd183481e85f1d06ceec0fadaffcc7a52d5274cc (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
const negv = @import("negv.zig");
const testing = @import("std").testing;

fn test__negvti2(a: i128, expected: i128) !void {
    const result = negv.__negvti2(a);
    try testing.expectEqual(expected, result);
}

test "negvti2" {
    // -2^127 <= i128 <= 2^127-1
    // 2^127 = 170141183460469231731687303715884105728
    // 2^127+1 = 170141183460469231731687303715884105727
    // TODO write panic handler for testing panics
    //try test__negvti2(-170141183460469231731687303715884105728, -5); // tested with return -5; and panic
    try test__negvti2(-170141183460469231731687303715884105727, 170141183460469231731687303715884105727);
    try test__negvti2(-170141183460469231731687303715884105726, 170141183460469231731687303715884105726);
    try test__negvti2(-170141183460469231731687303715884105725, 170141183460469231731687303715884105725);
    try test__negvti2(-170141183460469231731687303715884105724, 170141183460469231731687303715884105724);
    try test__negvti2(-42, 42);
    try test__negvti2(-7, 7);
    try test__negvti2(-1, 1);
    try test__negvti2(0, 0);
    try test__negvti2(1, -1);
    try test__negvti2(7, -7);
    try test__negvti2(42, -42);
    try test__negvti2(170141183460469231731687303715884105724, -170141183460469231731687303715884105724);
    try test__negvti2(170141183460469231731687303715884105725, -170141183460469231731687303715884105725);
    try test__negvti2(170141183460469231731687303715884105726, -170141183460469231731687303715884105726);
    try test__negvti2(170141183460469231731687303715884105727, -170141183460469231731687303715884105727);
}