diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-24 05:34:13 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-24 05:34:13 -0400 |
| commit | bb0419599aa93455f3ae0969f4bfd80204807596 (patch) | |
| tree | edce35a16131dbe5ce31a62cbbf7ac8f2dfca0bc /lib/std/json/static_test.zig | |
| parent | b477279c37d1ca1c141a3e30589bd974687b85cc (diff) | |
| parent | f7482a5c95dd549eb3da103eab42bac881ba0498 (diff) | |
| download | zig-bb0419599aa93455f3ae0969f4bfd80204807596.tar.gz zig-bb0419599aa93455f3ae0969f4bfd80204807596.zip | |
Merge pull request #17666 from jacobly0/x86_64-unicode
x86_64: pass more std tests
Diffstat (limited to 'lib/std/json/static_test.zig')
| -rw-r--r-- | lib/std/json/static_test.zig | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/std/json/static_test.zig b/lib/std/json/static_test.zig index c977de88e8..892ec85a50 100644 --- a/lib/std/json/static_test.zig +++ b/lib/std/json/static_test.zig @@ -392,8 +392,6 @@ test "parse" { } test "parse into enum" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - const T = enum(u32) { Foo = 42, Bar, @@ -478,8 +476,6 @@ test "parse into tagged union errors" { } test "parse into struct with no fields" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - const T = struct {}; const parsed = try parseFromSlice(T, testing.allocator, "{}", .{}); defer parsed.deinit(); @@ -949,8 +945,6 @@ test "json parse allocate when streaming" { } test "parse at comptime" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - const doc = \\{ \\ "vals": { |
