Commit 6317417fe1

Alex Rønne Petersen <alex@alexrp.com>
2025-08-14 07:18:05
test: enable tsan test for x86_64-netbsd
1 parent 234630b
Changed files (1)
test
standalone
test/standalone/tsan/build.zig
@@ -9,13 +9,12 @@ pub fn build(b: *std.Build) !void {
     for ([_]struct { std.Target.Os.Tag, []const std.Target.Cpu.Arch }{
         // .s390x and mips64(el) fail to build
         .{ .linux, &.{ .aarch64, .aarch64_be, .loongarch64, .powerpc64, .powerpc64le, .riscv64, .x86_64 } },
-        .{ .macos, &.{ .x86_64, .aarch64 } },
+        .{ .macos, &.{ .aarch64, .x86_64 } },
 
-        // Missing system headers
-        // https://github.com/ziglang/zig/issues/24736
+        // https://github.com/ziglang/zig/issues/24841
         // .{ .freebsd, &.{ .aarch64, .powerpc64, .powerpc64le, .riscv64, .x86_64 } },
-        // https://github.com/ziglang/zig/issues/24737
-        // .{ .netbsd, &.{ .aarch64, .aarch64_be, .x86_64 } },
+
+        .{ .netbsd, &.{.x86_64} },
 
         // TSan doesn't have full support for windows yet.
         // .{ .windows, &.{ .aarch64, .x86_64 } },