diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-09-25 17:49:47 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-09-25 17:49:47 +0200 |
| commit | a73f246b2963de0024b9b7070448862e855d5a04 (patch) | |
| tree | 643730e62a6bfcc225b9487bdc0c40f931d64f25 /lib/std | |
| parent | dd4be26f539548520bdfc159e2a86ab5301e12e8 (diff) | |
| download | zig-a73f246b2963de0024b9b7070448862e855d5a04.tar.gz zig-a73f246b2963de0024b9b7070448862e855d5a04.zip | |
std.Thread: disable test on armeb in addition to thumbeb
Same falky failure on both. See ed7ff0b693037078f451a7c6c1124611060f4892.
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/Thread.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Thread.zig b/lib/std/Thread.zig index 32d2fe76eb..d377172f08 100644 --- a/lib/std/Thread.zig +++ b/lib/std/Thread.zig @@ -1661,7 +1661,7 @@ test "Thread.getCurrentId" { test "thread local storage" { if (builtin.single_threaded) return error.SkipZigTest; - if (builtin.cpu.arch == .thumbeb) { + if (builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) { // https://github.com/ziglang/zig/issues/24061 return error.SkipZigTest; } |
