std.Thread: disable thread local storage test on 32-bit targets

https://github.com/ziglang/zig/issues/25498
This commit is contained in:
Alex Rønne Petersen 2025-11-16 00:06:44 +01:00
parent bc589c271a
commit 83d9a5968f
No known key found for this signature in database

View File

@ -1811,6 +1811,7 @@ test "Thread.getCurrentId" {
test "thread local storage" {
if (builtin.single_threaded) return error.SkipZigTest;
if (@sizeOf(usize) == 4) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25498
const thread1 = try Thread.spawn(.{}, testTls, .{});
const thread2 = try Thread.spawn(.{}, testTls, .{});