aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/alignof.zig
blob: 0443b2d6b3168f3495fbfa52c78e2ced937c8466 (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
const std = @import("std");
const expect = std.testing.expect;
const builtin = @import("builtin");
const native_arch = builtin.target.cpu.arch;
const maxInt = std.math.maxInt;

const Foo = struct {
    x: u32,
    y: u32,
    z: u32,
};

test "@alignOf(T) before referencing T" {
    try comptime expect(@alignOf(Foo) != maxInt(usize));
    if (native_arch == .x86_64) {
        try comptime expect(@alignOf(Foo) == 4);
    }
}

test "comparison of @alignOf(T) against zero" {
    const T = struct { x: u32 };
    try expect(!(@alignOf(T) == 0));
    try expect(@alignOf(T) != 0);
    try expect(!(@alignOf(T) < 0));
    try expect(!(@alignOf(T) <= 0));
    try expect(@alignOf(T) > 0);
    try expect(@alignOf(T) >= 0);
}

test "correct alignment for elements and slices of aligned array" {
    var buf: [1024]u8 align(64) = undefined;
    var start: usize = 1;
    var end: usize = undefined;
    try expect(@alignOf(@TypeOf(buf[start..end])) == @alignOf(*u8));
    try expect(@alignOf(@TypeOf(&buf[start..end])) == @alignOf(*u8));
    try expect(@alignOf(@TypeOf(&buf[start])) == @alignOf(*u8));
}