zig/test/stage2/test.zig

8 lines
265 B
Zig
Raw Normal View History

2019-11-23 12:56:05 -08:00
const TestContext = @import("../../src-self-hosted/test.zig").TestContext;
pub fn addCases(ctx: *TestContext) !void {
try @import("compile_errors.zig").addCases(ctx);
try @import("compare_output.zig").addCases(ctx);
@import("zir.zig").addCases(ctx);
2019-11-23 12:56:05 -08:00
}