zig/test/behavior/switch_prong_err_enum.zig
Jacob Young 525dcaecba behavior: enable stage2_c tests that are currently passing
Also fix C warnings triggered by these tests.
2022-10-25 05:11:28 -04:00

35 lines
899 B
Zig

const expect = @import("std").testing.expect;
const builtin = @import("builtin");
var read_count: u64 = 0;
fn readOnce() anyerror!u64 {
read_count += 1;
return read_count;
}
const FormValue = union(enum) {
Address: u64,
Other: bool,
};
fn doThing(form_id: u64) anyerror!FormValue {
return switch (form_id) {
17 => FormValue{ .Address = try readOnce() },
else => error.InvalidDebugInfo,
};
}
test "switch prong returns error enum" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
switch (doThing(17) catch unreachable) {
FormValue.Address => |payload| {
try expect(payload == 1);
},
else => unreachable,
}
try expect(read_count == 1);
}