mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
9 lines
287 B
Zig
9 lines
287 B
Zig
const std = @import("std");
|
|
const TestContext = @import("../src/test.zig").TestContext;
|
|
|
|
pub fn addCases(ctx: *TestContext) !void {
|
|
try @import("compile_errors.zig").addCases(ctx);
|
|
try @import("stage2/cbe.zig").addCases(ctx);
|
|
try @import("stage2/nvptx.zig").addCases(ctx);
|
|
}
|