Commit a73f246b29

Alex Rønne Petersen <alex@alexrp.com>
2025-09-25 17:49:47
std.Thread: disable test on armeb in addition to thumbeb
Same falky failure on both. See ed7ff0b693037078f451a7c6c1124611060f4892.
1 parent dd4be26
Changed files (1)
lib
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;
     }