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

fn parityti2Naive(a: i128) i32 {
    var x = @bitCast(u128, a);
    var has_parity: bool = false;
    while (x > 0) {
        has_parity = !has_parity;
        x = x & (x - 1);
    }
    return @intCast(i32, @boolToInt(has_parity));
}

fn test__parityti2(a: i128) !void {
    var x = parity.__parityti2(a);
    var expected: i128 = parityti2Naive(a);
    try testing.expectEqual(expected, x);
}

test "parityti2" {
    try test__parityti2(0);
    try test__parityti2(1);
    try test__parityti2(2);
    try test__parityti2(@bitCast(i128, @as(u128, 0xffffffff_ffffffff_ffffffff_fffffffd)));
    try test__parityti2(@bitCast(i128, @as(u128, 0xffffffff_ffffffff_ffffffff_fffffffe)));
    try test__parityti2(@bitCast(i128, @as(u128, 0xffffffff_ffffffff_ffffffff_ffffffff)));

    const RndGen = std.rand.DefaultPrng;
    var rnd = RndGen.init(42);
    var i: u32 = 0;
    while (i < 10_000) : (i += 1) {
        var rand_num = rnd.random().int(i128);
        try test__parityti2(rand_num);
    }
}