From 6317417fe12aabfb734395c3b7d0c1ac6f143d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 14 Aug 2025 07:18:05 +0200 Subject: [PATCH] test: enable tsan test for x86_64-netbsd --- test/standalone/tsan/build.zig | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/standalone/tsan/build.zig b/test/standalone/tsan/build.zig index 85f5f3ae6d..74919cf8f4 100644 --- a/test/standalone/tsan/build.zig +++ b/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 } },