| author | |
| committer | |
| log | 7013567f8abde19e5176d902ce88abc754fc9a3e |
| tree | 3b41b28d970a4897dad72ac326da707da7ee4c06 |
| parent | 1a1930ec9b90834526bfcc6e4bc750ffeaceeb79 |
1 files changed, 5 insertions(+), 0 deletions(-)
test/behavior/threadlocal.zig+5| ... | ... | @@ -12,6 +12,11 @@ test "thread local variable" { |
| 12 | 12 | }; // TODO |
| 13 | 13 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 14 | 14 | |
| 15 | if (builtin.zig_backend == .stage2_x86_64 and builtin.os.tag == .macos) { | |
| 16 | // Fails due to register hazards. | |
| 17 | return error.SkipZigTest; | |
| 18 | } | |
| 19 | ||
| 15 | 20 | const S = struct { |
| 16 | 21 | threadlocal var t: i32 = 1234; |
| 17 | 22 | }; |