mirror of
https://github.com/ziglang/zig.git
synced 2024-12-01 09:32:31 +00:00
66f3efb63b
* migrate runtime safety tests to the new test harness - this required adding compare output / execution support for stage1 to the test harness. * rename `zig build test-stage2` to `zig build test-cases` since it now does quite a bit of stage1 testing actually. I named it this way since the main directory in the source tree associated with these tests is "test/cases/". * add some documentation for the test manifest format.
23 lines
451 B
Zig
23 lines
451 B
Zig
const std = @import("std");
|
|
|
|
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace) noreturn {
|
|
_ = stack_trace;
|
|
if (std.mem.eql(u8, message, "integer overflow")) {
|
|
std.process.exit(0);
|
|
}
|
|
std.process.exit(1);
|
|
}
|
|
|
|
pub fn main() !void {
|
|
const x = add(65530, 10);
|
|
if (x == 0) return error.Whatever;
|
|
return error.TestFailed;
|
|
}
|
|
|
|
fn add(a: u16, b: u16) u16 {
|
|
return a + b;
|
|
}
|
|
|
|
// run
|
|
// backend=stage1
|