Revert "std.Thread: disable test on armeb in addition to thumbeb"

This reverts commit a73f246b29.
This commit is contained in:
Alex Rønne Petersen 2025-10-18 20:49:25 +02:00
parent e9e0526cf8
commit 653a191965
No known key found for this signature in database

View file

@ -1661,11 +1661,6 @@ test "Thread.getCurrentId" {
test "thread local storage" {
if (builtin.single_threaded) return error.SkipZigTest;
if (builtin.cpu.arch == .armeb or 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();