zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 555086b1f33f8dc8933c8de989a413b316296cd7 (tree)
parent 03f937759dd9183a5f6740434360c88ab124c29d
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed, 27 May 2026 21:26:12 -0700

tests: move skip logic to be noticed more easily

Diffstat:
Mtest/tests.zig | 7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -200,6 +200,7 @@ const module_test_targets = blk: { // .use_lld = false, // .optimize_mode = .ReleaseFast, // .strip = true, + // .skip_modules = &.{"std"}, // TODO get these passing //}, //.{ // .target = .{ @@ -212,6 +213,7 @@ const module_test_targets = blk: { // .use_lld = false, // .optimize_mode = .ReleaseFast, // .strip = true, + // .skip_modules = &.{"std"}, // TODO get these passing //}, .{ @@ -2663,11 +2665,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { if (options.skip_single_threaded and test_target.single_threaded == true) continue; - if (!would_use_llvm and target.cpu.arch == .aarch64) { - // TODO get std tests passing for the aarch64 self-hosted backend. - if (mem.eql(u8, options.name, "std")) continue; - } - const want_this_mode = for (options.optimize_modes) |m| { if (m == test_target.optimize_mode) break true; } else false;