aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-03-29 10:33:37 -0400
committerAndrew Kelley <andrew@ziglang.org>2020-03-29 10:34:12 -0400
commitc70471fae617fb91ca0a323f079574a3caaa7775 (patch)
treecf0492d2f4d71ce0a09336ea119613a032fc1bcc /lib/std
parent38a1af5d4fbe5994d6d8a93512e9332529958473 (diff)
downloadzig-c70471fae617fb91ca0a323f079574a3caaa7775.tar.gz
zig-c70471fae617fb91ca0a323f079574a3caaa7775.zip
enable now-passing test cases
These can now be enabled thanks to bug fixes that landed in LLVM 10.
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/json.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/std/json.zig b/lib/std/json.zig
index 49afb6bea6..88f07d0aae 100644
--- a/lib/std/json.zig
+++ b/lib/std/json.zig
@@ -1658,9 +1658,6 @@ test "parse into tagged union" {
}
test "parseFree descends into tagged union" {
- // tagged unions are broken on arm64: https://github.com/ziglang/zig/issues/4492
- if (std.builtin.arch == .aarch64) return error.SkipZigTest;
-
var fail_alloc = testing.FailingAllocator.init(testing.allocator, 1);
const options = ParseOptions{ .allocator = &fail_alloc.allocator };
const T = union(enum) {