aboutsummaryrefslogtreecommitdiff
path: root/lib/std/json/JSONTestSuite_test.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-10-27 08:29:24 -0400
committerGitHub <noreply@github.com>2023-10-27 08:29:24 -0400
commit3b0dce8ebd252161bfca237953c00b2a40705b90 (patch)
treef0df484b4b6cf67b28dedff0f9622ba319d425c4 /lib/std/json/JSONTestSuite_test.zig
parent8f48533691e93538846993f78f732272a03a600b (diff)
parentb0cf620fe3032d485b581c8ab6239f719ef2cada (diff)
downloadzig-3b0dce8ebd252161bfca237953c00b2a40705b90.tar.gz
zig-3b0dce8ebd252161bfca237953c00b2a40705b90.zip
Merge pull request #17716 from jacobly0/x86_64
x86_64: pass more tests
Diffstat (limited to 'lib/std/json/JSONTestSuite_test.zig')
-rw-r--r--lib/std/json/JSONTestSuite_test.zig6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/std/json/JSONTestSuite_test.zig b/lib/std/json/JSONTestSuite_test.zig
index 5d75e72159..30c5907f8b 100644
--- a/lib/std/json/JSONTestSuite_test.zig
+++ b/lib/std/json/JSONTestSuite_test.zig
@@ -764,8 +764,6 @@ test "y_number_simple_real.json" {
try ok("[123.456789]");
}
test "y_object.json" {
- if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest;
-
try ok("{\"asd\":\"sdf\", \"dfg\":\"fgh\"}");
}
test "y_object_basic.json" {
@@ -787,13 +785,9 @@ test "y_object_escaped_null_in_key.json" {
try ok("{\"foo\\u0000bar\": 42}");
}
test "y_object_extreme_numbers.json" {
- if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest;
-
try ok("{ \"min\": -1.0e+28, \"max\": 1.0e+28 }");
}
test "y_object_long_strings.json" {
- if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest;
-
try ok("{\"x\":[{\"id\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"}], \"id\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"}");
}
test "y_object_simple.json" {