diff --git a/script/tc b/script/tc index 6252ba09..2da9cbff 100755 --- a/script/tc +++ b/script/tc @@ -103,6 +103,9 @@ def run_tc(tc, **options) info = "Graph variable binding differences" when /tvs02/ info = "Empty vs. Unbound" + when 'Negated Property Set with inverse properties', + 'Negated Property Set with both direct and inverse properties' + info = "new SPARQL tests" end info = "Entailment" if tc.entailment? diff --git a/spec/suite_spec.rb b/spec/suite_spec.rb index c908e106..cb790ed1 100644 --- a/spec/suite_spec.rb +++ b/spec/suite_spec.rb @@ -32,6 +32,8 @@ pending "empty values are the same as missing values" when 'construct_date-02.rq', 'construct_time-01.rq' pending "failed when simplifying whitespace in terminals" + when 'nps_inverse.rq', 'nps_direct_and_inverse.rq' + pending("New SPARQL tests") end skip 'Entailment Regimes' if t.entailment? @@ -185,6 +187,10 @@ when 'compare_time-01.rq', 'adjust_dateTime-01.rq', 'adjust_date-01.rq', 'adjust_time-01.rq' skip "Equivalent form" + when 'nps_inverse.rq', 'nps_direct_and_inverse.rq' + pending("New SPARQL tests") + when 'values04.rq', 'values05.rq', 'values08.rq' + skip("Invalid VALUES Syntax") end t.logger = RDF::Spec.logger t.logger.debug "Source:\n#{t.action.query_string}"