We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9e0526 commit 653a191Copy full SHA for 653a191
1 file changed
lib/std/Thread.zig
@@ -1661,11 +1661,6 @@ test "Thread.getCurrentId" {
1661
test "thread local storage" {
1662
if (builtin.single_threaded) return error.SkipZigTest;
1663
1664
- if (builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) {
1665
- // https://github.com/ziglang/zig/issues/24061
1666
- return error.SkipZigTest;
1667
- }
1668
-
1669
const thread1 = try Thread.spawn(.{}, testTls, .{});
1670
const thread2 = try Thread.spawn(.{}, testTls, .{});
1671
try testTls();
0 commit comments