Skip to content

Commit a73f246

Browse files
committed
std.Thread: disable test on armeb in addition to thumbeb
Same falky failure on both. See ed7ff0b.
1 parent dd4be26 commit a73f246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/Thread.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1661,7 +1661,7 @@ test "Thread.getCurrentId" {
16611661
test "thread local storage" {
16621662
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) {
16651665
// https://github.com/ziglang/zig/issues/24061
16661666
return error.SkipZigTest;
16671667
}

0 commit comments

Comments
 (0)