diff options
| author | Timon Kruiper <timonkruiper@gmail.com> | 2020-04-21 18:42:21 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-04-24 15:28:55 -0400 |
| commit | c829f2f7b7c5bdd13d3c39ae2960ed108393a210 (patch) | |
| tree | f93b1df14908722f4e587f438102813067e3a4c6 /lib/std/json.zig | |
| parent | a9eb4a6740e0bb00e1984de3768a7de6001c25dd (diff) | |
| download | zig-c829f2f7b7c5bdd13d3c39ae2960ed108393a210.tar.gz zig-c829f2f7b7c5bdd13d3c39ae2960ed108393a210.zip | |
Add mips support to standard library
Diffstat (limited to 'lib/std/json.zig')
| -rw-r--r-- | lib/std/json.zig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/std/json.zig b/lib/std/json.zig index 1784f44a4d..fcda3fd835 100644 --- a/lib/std/json.zig +++ b/lib/std/json.zig @@ -2249,6 +2249,9 @@ test "integer after float has proper type" { } test "escaped characters" { + // https://github.com/ziglang/zig/issues/5127 + if (std.Target.current.cpu.arch == .mips) return error.SkipZigTest; + var arena_allocator = std.heap.ArenaAllocator.init(std.testing.allocator); defer arena_allocator.deinit(); const input = @@ -2281,6 +2284,9 @@ test "escaped characters" { } test "string copy option" { + // https://github.com/ziglang/zig/issues/5127 + if (std.Target.current.cpu.arch == .mips) return error.SkipZigTest; + const input = \\{ \\ "noescape": "aą😂", |
