diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-11-24 20:28:46 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-11-24 20:28:46 -0500 |
| commit | 34b1ebefaab2e8f5c322bc96388bb4fefec31027 (patch) | |
| tree | d2a9909de0a9e19c495fcaaccfaa2c31f5f9169b /test/stage2 | |
| parent | b9f88c3552c0ac892aa6dba7ed8518a0aee51305 (diff) | |
| parent | 8309b6188d849c5d4c27c086b7759566d9f86716 (diff) | |
| download | zig-34b1ebefaab2e8f5c322bc96388bb4fefec31027.tar.gz zig-34b1ebefaab2e8f5c322bc96388bb4fefec31027.zip | |
Merge remote-tracking branch 'origin/master' into null-terminated-pointers
Diffstat (limited to 'test/stage2')
| -rw-r--r-- | test/stage2/test.zig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/stage2/test.zig b/test/stage2/test.zig new file mode 100644 index 0000000000..f4768cd39a --- /dev/null +++ b/test/stage2/test.zig @@ -0,0 +1,6 @@ +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); +} |
