From a73f246b2963de0024b9b7070448862e855d5a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 25 Sep 2025 17:49:47 +0200 Subject: [PATCH] std.Thread: disable test on armeb in addition to thumbeb Same falky failure on both. See ed7ff0b693037078f451a7c6c1124611060f4892. --- lib/std/Thread.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }