mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-28 00:35:18 +02:00
Update lilv, lv2, serd, sord, sratom, and add suil.
This commit is contained in:
2
lib-src/lv2/serd/tests/bad/bad-00.ttl
Normal file
2
lib-src/lv2/serd/tests/bad/bad-00.ttl
Normal file
@@ -0,0 +1,2 @@
|
||||
# prefix name must end in a :
|
||||
@prefix a <#> .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-01.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-01.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# Forbidden by RDF - predicate cannot be blank
|
||||
@prefix : <http://example.org/base#> .
|
||||
:a [ :b :c ] :d .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-02.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-02.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# Forbidden by RDF - predicate cannot be blank
|
||||
@prefix : <http://example.org/base#> .
|
||||
:a [] :b .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-03.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-03.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# 'a' only allowed as a predicate
|
||||
@prefix : <http://example.org/base#> .
|
||||
a :a :b .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-04.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-04.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# No comma is allowed in collections
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
:a :b ( "apple", "banana" ) .
|
||||
4
lib-src/lv2/serd/tests/bad/bad-05.ttl
Normal file
4
lib-src/lv2/serd/tests/bad/bad-05.ttl
Normal file
@@ -0,0 +1,4 @@
|
||||
# N3 {}s are not in Turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
{ :a :b :c . } :d :e .
|
||||
|
||||
3
lib-src/lv2/serd/tests/bad/bad-06.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-06.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# is and of are not in turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
:a is :b of :c .
|
||||
4
lib-src/lv2/serd/tests/bad/bad-07.ttl
Normal file
4
lib-src/lv2/serd/tests/bad/bad-07.ttl
Normal file
@@ -0,0 +1,4 @@
|
||||
# paths are not in turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
:a.:b.:c .
|
||||
:a^:b^:c .
|
||||
2
lib-src/lv2/serd/tests/bad/bad-08.ttl
Normal file
2
lib-src/lv2/serd/tests/bad/bad-08.ttl
Normal file
@@ -0,0 +1,2 @@
|
||||
@keywords something.
|
||||
# @keywords is not in turtle
|
||||
3
lib-src/lv2/serd/tests/bad/bad-09.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-09.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# implies is not in turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
:a => :b .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-10.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-10.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# equivalence is not in turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
:a = :b .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-11.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-11.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# @forAll is not in turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
@forAll :x .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-12.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-12.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# @forSome is not in turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
@forSome :x .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-13.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-13.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
# <= is not in turtle
|
||||
@prefix : <http://example.org/stuff/1.0/> .
|
||||
:a <= :b .
|
||||
6
lib-src/lv2/serd/tests/bad/bad-14.ttl
Normal file
6
lib-src/lv2/serd/tests/bad/bad-14.ttl
Normal file
@@ -0,0 +1,6 @@
|
||||
# Test long literals with missing end
|
||||
@prefix : <http://example.org/ex#> .
|
||||
:a :b """a long
|
||||
literal
|
||||
with
|
||||
newlines
|
||||
1
lib-src/lv2/serd/tests/bad/bad-base.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-base.ttl
Normal file
@@ -0,0 +1 @@
|
||||
@base "I'm quite certain this is not a URI" .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-blank.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-blank.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org/> .
|
||||
|
||||
_:.bad a eg:Thing .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-datatype.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-datatype.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<> <http://example.org/pred> "hello"^^"not-a-uri" .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-blank.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-blank.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:thing [ eg:comment "Thing"
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-escape.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-escape.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:comment """\uA
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-lang-suffix.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-lang-suffix.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:comment "That ain't no language"@en-x-x
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-lang.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-lang.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:comment "That ain't no language"@a
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-list.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-list.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:thing ( eg:car eg:cdr
|
||||
2
lib-src/lv2/serd/tests/bad/bad-eof-in-object-list.ttl
Normal file
2
lib-src/lv2/serd/tests/bad/bad-eof-in-object-list.ttl
Normal file
@@ -0,0 +1,2 @@
|
||||
@prefix eg: <http://example.org/> .
|
||||
<> eg:p eg:o ,
|
||||
2
lib-src/lv2/serd/tests/bad/bad-eof-in-object-list2.ttl
Normal file
2
lib-src/lv2/serd/tests/bad/bad-eof-in-object-list2.ttl
Normal file
@@ -0,0 +1,2 @@
|
||||
@prefix eg: <http://example.org/> .
|
||||
<> eg:p eg:o ; eg:p1 eg:o2 ,
|
||||
2
lib-src/lv2/serd/tests/bad/bad-eof-in-predicate-list.ttl
Normal file
2
lib-src/lv2/serd/tests/bad/bad-eof-in-predicate-list.ttl
Normal file
@@ -0,0 +1,2 @@
|
||||
@prefix eg: <http://example.org/> .
|
||||
<> eg:p eg:o ;
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-string.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-string.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:comment "This is the string that never ends
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-triple-quote.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-triple-quote.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:comment """Hello""
|
||||
3
lib-src/lv2/serd/tests/bad/bad-eof-in-uri.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-eof-in-uri.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:uri <http://example.org/dontstop
|
||||
1
lib-src/lv2/serd/tests/bad/bad-escape.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-escape.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<http://example.org/thing> <http://example.org/comment> """\!""" .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-hex-digit.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-hex-digit.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<http://example.org/thing> <http://example.org/comment> "\uABCG" .
|
||||
2
lib-src/lv2/serd/tests/bad/bad-id-clash.ttl
Normal file
2
lib-src/lv2/serd/tests/bad/bad-id-clash.ttl
Normal file
@@ -0,0 +1,2 @@
|
||||
_:b1 a _:b2 .
|
||||
_:b2 a _:B1 .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-lang.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-lang.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<> <http://example.org/pred> "hello"@\bad .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-list.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-list.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<> <http://example.org/pred> <http://example.org/valid> , invalid .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-list2.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-list2.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org> .
|
||||
|
||||
<> eg:thing ( .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-namespace.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-namespace.ttl
Normal file
@@ -0,0 +1 @@
|
||||
@prefix eg: "what?" .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-ns.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-ns.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<> a badprefix:Thing .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-num.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-num.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<> <http://example.org/pred> .hello .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-object.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-object.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org/> .
|
||||
|
||||
eg:thing a four .
|
||||
3
lib-src/lv2/serd/tests/bad/bad-object2.ttl
Normal file
3
lib-src/lv2/serd/tests/bad/bad-object2.ttl
Normal file
@@ -0,0 +1,3 @@
|
||||
@prefix eg: <http://example.org/> .
|
||||
|
||||
eg:thing a fives .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-prefix.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-prefix.ttl
Normal file
@@ -0,0 +1 @@
|
||||
@prefix _invalid <http://example.org/> .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-string.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-string.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<> <http://example.org/pred> "hello
|
||||
1
lib-src/lv2/serd/tests/bad/bad-subject.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-subject.ttl
Normal file
@@ -0,0 +1 @@
|
||||
invalid.:thing a invalid.Thing .
|
||||
1
lib-src/lv2/serd/tests/bad/bad-uri-escape.ttl
Normal file
1
lib-src/lv2/serd/tests/bad/bad-uri-escape.ttl
Normal file
@@ -0,0 +1 @@
|
||||
<http://example.org/thing> <http://example.org/comment> <http://example.org/\!> .
|
||||
2
lib-src/lv2/serd/tests/bad/bad-verb.ttl
Normal file
2
lib-src/lv2/serd/tests/bad/bad-verb.ttl
Normal file
@@ -0,0 +1,2 @@
|
||||
@prefix a: <http://example.org/> .
|
||||
a:thing x a:Thing .
|
||||
Reference in New Issue
Block a user