mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
stage2: re-enable all tests
I've committed what I didn't want to by mistake...
This commit is contained in:
parent
ad5533fdfb
commit
696e51be49
1 changed files with 9 additions and 9 deletions
|
|
@ -12,15 +12,15 @@ const linux_x64 = std.zig.CrossTarget{
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn addCases(ctx: *TestContext) !void {
|
pub fn addCases(ctx: *TestContext) !void {
|
||||||
// try @import("compile_errors.zig").addCases(ctx);
|
try @import("compile_errors.zig").addCases(ctx);
|
||||||
// try @import("stage2/cbe.zig").addCases(ctx);
|
try @import("stage2/cbe.zig").addCases(ctx);
|
||||||
// try @import("stage2/arm.zig").addCases(ctx);
|
try @import("stage2/arm.zig").addCases(ctx);
|
||||||
// try @import("stage2/aarch64.zig").addCases(ctx);
|
try @import("stage2/aarch64.zig").addCases(ctx);
|
||||||
// try @import("stage2/llvm.zig").addCases(ctx);
|
try @import("stage2/llvm.zig").addCases(ctx);
|
||||||
// try @import("stage2/wasm.zig").addCases(ctx);
|
try @import("stage2/wasm.zig").addCases(ctx);
|
||||||
// try @import("stage2/darwin.zig").addCases(ctx);
|
try @import("stage2/darwin.zig").addCases(ctx);
|
||||||
// try @import("stage2/riscv64.zig").addCases(ctx);
|
try @import("stage2/riscv64.zig").addCases(ctx);
|
||||||
// try @import("stage2/plan9.zig").addCases(ctx);
|
try @import("stage2/plan9.zig").addCases(ctx);
|
||||||
|
|
||||||
{
|
{
|
||||||
var case = ctx.exe("hello world with updates", linux_x64);
|
var case = ctx.exe("hello world with updates", linux_x64);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue