mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
073289d0da
Some new behavior tests have recently been added, and not all of these pass with the SPIR-V backend.
14 lines
408 B
Zig
14 lines
408 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const expectEqual = std.testing.expectEqual;
|
|
const c = @cImport({
|
|
@cInclude("limits.h");
|
|
});
|
|
|
|
test "c_char signedness" {
|
|
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
|
|
|
|
try expectEqual(@as(c_char, c.CHAR_MIN), std.math.minInt(c_char));
|
|
try expectEqual(@as(c_char, c.CHAR_MAX), std.math.maxInt(c_char));
|
|
}
|