authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-09-25 17:49:47+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-09-25 17:49:47+02:00
loga73f246b2963de0024b9b7070448862e855d5a04
tree643730e62a6bfcc225b9487bdc0c40f931d64f25
parentdd4be26f539548520bdfc159e2a86ab5301e12e8
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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

Same falky failure on both. See ed7ff0b693037078f451a7c6c1124611060f4892.

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

lib/std/Thread.zig+1-1
...@@ -1661,7 +1661,7 @@ test "Thread.getCurrentId" {...@@ -1661,7 +1661,7 @@ 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 == .thumbeb) {1664 if (builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) {
1665 // https://github.com/ziglang/zig/issues/240611665 // https://github.com/ziglang/zig/issues/24061
1666 return error.SkipZigTest;1666 return error.SkipZigTest;
1667 }1667 }