| author | |
| committer | |
| log | c70471fae617fb91ca0a323f079574a3caaa7775 |
| tree | cf0492d2f4d71ce0a09336ea119613a032fc1bcc |
| parent | 38a1af5d4fbe5994d6d8a93512e9332529958473 |
| signature |
These can now be enabled thanks to bug fixes that landed in
LLVM 10.2 files changed, 0 insertions(+), 5 deletions(-)
lib/std/json.zig-3| ... | ... | @@ -1658,9 +1658,6 @@ test "parse into tagged union" { |
| 1658 | 1658 | } |
| 1659 | 1659 | |
| 1660 | 1660 | test "parseFree descends into tagged union" { |
| 1661 | // tagged unions are broken on arm64: https://github.com/ziglang/zig/issues/4492 | |
| 1662 | if (std.builtin.arch == .aarch64) return error.SkipZigTest; | |
| 1663 | ||
| 1664 | 1661 | var fail_alloc = testing.FailingAllocator.init(testing.allocator, 1); |
| 1665 | 1662 | const options = ParseOptions{ .allocator = &fail_alloc.allocator }; |
| 1666 | 1663 | const T = union(enum) { |
test/stage1/behavior/atomics.zig-2| ... | ... | @@ -190,8 +190,6 @@ fn testAtomicRmwInt() void { |
| 190 | 190 | _ = @atomicRmw(u8, &x, .Xor, 2, .SeqCst); |
| 191 | 191 | expect(x == 0xfd); |
| 192 | 192 | |
| 193 | // TODO https://github.com/ziglang/zig/issues/4724 | |
| 194 | if (builtin.arch == .mipsel) return; | |
| 195 | 193 | _ = @atomicRmw(u8, &x, .Max, 1, .SeqCst); |
| 196 | 194 | expect(x == 0xfd); |
| 197 | 195 | _ = @atomicRmw(u8, &x, .Min, 1, .SeqCst); |