authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-29 10:33:37-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-29 10:34:12-04:00
logc70471fae617fb91ca0a323f079574a3caaa7775
treecf0492d2f4d71ce0a09336ea119613a032fc1bcc
parent38a1af5d4fbe5994d6d8a93512e9332529958473
signaturelock-open Commit is signed but in an unrecognized format.

enable now-passing test cases

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" {
16581658}
16591659
16601660test "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
16641661 var fail_alloc = testing.FailingAllocator.init(testing.allocator, 1);
16651662 const options = ParseOptions{ .allocator = &fail_alloc.allocator };
16661663 const T = union(enum) {
test/stage1/behavior/atomics.zig-2
......@@ -190,8 +190,6 @@ fn testAtomicRmwInt() void {
190190 _ = @atomicRmw(u8, &x, .Xor, 2, .SeqCst);
191191 expect(x == 0xfd);
192192
193 // TODO https://github.com/ziglang/zig/issues/4724
194 if (builtin.arch == .mipsel) return;
195193 _ = @atomicRmw(u8, &x, .Max, 1, .SeqCst);
196194 expect(x == 0xfd);
197195 _ = @atomicRmw(u8, &x, .Min, 1, .SeqCst);