authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2021-11-19 22:41:10+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2021-11-19 22:41:10+01:00
log696e51be4971631b05bd9eda52e36c7be3a83342
tree7ae66d77ae71cbe3247899cbbbd49200d98640bc
parentad5533fdfb37a04f3fa938673dff931225457708

stage2: re-enable all tests

I've committed what I didn't want to by mistake...

1 files changed, 9 insertions(+), 9 deletions(-)

test/cases.zig+9-9
...@@ -12,15 +12,15 @@ const linux_x64 = std.zig.CrossTarget{...@@ -12,15 +12,15 @@ const linux_x64 = std.zig.CrossTarget{
12};12};
1313
14pub fn addCases(ctx: *TestContext) !void {14pub fn addCases(ctx: *TestContext) !void {
15 // try @import("compile_errors.zig").addCases(ctx);15 try @import("compile_errors.zig").addCases(ctx);
16 // try @import("stage2/cbe.zig").addCases(ctx);16 try @import("stage2/cbe.zig").addCases(ctx);
17 // try @import("stage2/arm.zig").addCases(ctx);17 try @import("stage2/arm.zig").addCases(ctx);
18 // try @import("stage2/aarch64.zig").addCases(ctx);18 try @import("stage2/aarch64.zig").addCases(ctx);
19 // try @import("stage2/llvm.zig").addCases(ctx);19 try @import("stage2/llvm.zig").addCases(ctx);
20 // try @import("stage2/wasm.zig").addCases(ctx);20 try @import("stage2/wasm.zig").addCases(ctx);
21 // try @import("stage2/darwin.zig").addCases(ctx);21 try @import("stage2/darwin.zig").addCases(ctx);
22 // try @import("stage2/riscv64.zig").addCases(ctx);22 try @import("stage2/riscv64.zig").addCases(ctx);
23 // try @import("stage2/plan9.zig").addCases(ctx);23 try @import("stage2/plan9.zig").addCases(ctx);
2424
25 {25 {
26 var case = ctx.exe("hello world with updates", linux_x64);26 var case = ctx.exe("hello world with updates", linux_x64);