mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 22:35:24 +00:00
x86_64: disable failing behavior test
This commit is contained in:
parent
1a1930ec9b
commit
7013567f8a
@ -12,6 +12,11 @@ test "thread local variable" {
|
||||
}; // TODO
|
||||
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
|
||||
|
||||
if (builtin.zig_backend == .stage2_x86_64 and builtin.os.tag == .macos) {
|
||||
// Fails due to register hazards.
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
const S = struct {
|
||||
threadlocal var t: i32 = 1234;
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user