authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-18 20:49:25+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-18 20:50:19+02:00
log653a1919651f6c9e84e96a6acf8915f57773a7dc
tree1574232966b0d904a277b55a1e13c2a65949027d
parente9e0526cf8a1240ee3d53acd7faff0c9bb358d5c
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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

This reverts commit a73f246b2963de0024b9b7070448862e855d5a04.

1 files changed, 0 insertions(+), 5 deletions(-)

lib/std/Thread.zig-5
...@@ -1661,11 +1661,6 @@ test "Thread.getCurrentId" {...@@ -1661,11 +1661,6 @@ test "Thread.getCurrentId" {
1661test "thread local storage" {1661test "thread local storage" {
1662 if (builtin.single_threaded) return error.SkipZigTest;1662 if (builtin.single_threaded) return error.SkipZigTest;
16631663
1664 if (builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) {
1665 // https://github.com/ziglang/zig/issues/24061
1666 return error.SkipZigTest;
1667 }
1668
1669 const thread1 = try Thread.spawn(.{}, testTls, .{});1664 const thread1 = try Thread.spawn(.{}, testTls, .{});
1670 const thread2 = try Thread.spawn(.{}, testTls, .{});1665 const thread2 = try Thread.spawn(.{}, testTls, .{});
1671 try testTls();1666 try testTls();