# HG changeset patch # User Kim Alvefur # Date 1678533169 -3600 # Node ID 05ec70a9f755b3a47962303bcf54e614c2f95497 # Parent 297b4cfcc3d97d2cb40c9dfdaa0818f16f869011 util.jsonschema: Disable some further new failing tests Absolute references, weird fractions, unevaluatedProperties??? diff -r 297b4cfcc3d9 -r 05ec70a9f755 spec/util_jsonschema_spec.lua --- a/spec/util_jsonschema_spec.lua Sat Mar 11 12:01:17 2023 +0100 +++ b/spec/util_jsonschema_spec.lua Sat Mar 11 12:12:49 2023 +0100 @@ -2,7 +2,7 @@ local json = require "util.json"; local lfs = require "lfs"; --- https://github.com/json-schema-org/JSON-Schema-Test-Suite.git 2.0.0-698-gf57d3e0 +-- https://github.com/json-schema-org/JSON-Schema-Test-Suite.git 2.0.0-724-g19947ea local test_suite_dir = "spec/JSON-Schema-Test-Suite/tests/draft2020-12" if lfs.attributes(test_suite_dir, "mode") ~= "directory" then return end @@ -32,6 +32,7 @@ ["minProperties.json"] = "NYI", ["multipleOf.json:1"] = "multiples of IEEE 754 fractions", ["multipleOf.json:2"] = "multiples of IEEE 754 fractions", + ["multipleOf.json:4"] = "multiples of IEEE 754 fractions", ["pattern.json"] = "NYI", ["patternProperties.json"] = "NYI", ["properties.json:1:2"] = "NYI", @@ -57,6 +58,8 @@ ["ref.json:29"] = "NYI", ["ref.json:30"] = "NYI", ["ref.json:31"] = "NYI", + ["ref.json:32"] = "NYI", + ["not.json:6"] = "NYI", ["refRemote.json"] = "DEFINITELY NYI", ["required.json:0:2"] = "distinguishing objects from arrays", ["type.json:3:4"] = "distinguishing objects from arrays",