aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Thread.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-09-19 23:13:29 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-09-20 18:33:01 -0700
commited7ff0b693037078f451a7c6c1124611060f4892 (patch)
tree4d87c3bbf89f868379479c0183627aba7984abb6 /lib/std/Thread.zig
parent0e16d933be12d00b79cbd87c13d71ad164fe5524 (diff)
downloadzig-ed7ff0b693037078f451a7c6c1124611060f4892.tar.gz
zig-ed7ff0b693037078f451a7c6c1124611060f4892.zip
allow some test cases to regress
tracked by #24061 - these should be re-enabled once that is solved.
Diffstat (limited to 'lib/std/Thread.zig')
-rw-r--r--lib/std/Thread.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/std/Thread.zig b/lib/std/Thread.zig
index 5f667497fd..32d2fe76eb 100644
--- a/lib/std/Thread.zig
+++ b/lib/std/Thread.zig
@@ -1661,6 +1661,11 @@ test "Thread.getCurrentId" {
test "thread local storage" {
if (builtin.single_threaded) return error.SkipZigTest;
+ if (builtin.cpu.arch == .thumbeb) {
+ // https://github.com/ziglang/zig/issues/24061
+ return error.SkipZigTest;
+ }
+
const thread1 = try Thread.spawn(.{}, testTls, .{});
const thread2 = try Thread.spawn(.{}, testTls, .{});
try testTls();