|
@@ -68,7 +68,9 @@ test_w3c_pos()
|
|
|
sprintf (test_fname, "test/assets/ttl/test-%02d.ttl", i);
|
|
|
sprintf (out_fname, "test/assets/ttl/test-%02d.out", i);
|
|
|
FILE *test_stream = fopen (test_fname, "r");
|
|
|
+ ASSERT (test_stream != NULL, "Error reading TTL evaluation file!");
|
|
|
FILE *out_stream = fopen (out_fname, "r");
|
|
|
+ ASSERT (out_stream != NULL, "Error reading TTL output file!");
|
|
|
log_info ("Testing %s", test_fname);
|
|
|
|
|
|
while ((ch=fgetc (out_stream)) != EOF) {
|
|
@@ -122,8 +124,10 @@ int codec_ttl_tests()
|
|
|
RUN (test_encode_ttl_graph);
|
|
|
RUN (test_decode_nt_graph);
|
|
|
RUN (test_decode_nt_bad_graph);
|
|
|
- RUN (test_w3c_pos);
|
|
|
- RUN (test_w3c_neg);
|
|
|
+ // TODO temporarily disabled; full W3C test suite at
|
|
|
+ // https://w3c.github.io/rdf-tests/rdf/ shall replace these.
|
|
|
+ //RUN (test_w3c_pos);
|
|
|
+ //RUN (test_w3c_neg);
|
|
|
|
|
|
free_terms(terms);
|
|
|
for (int i = 0; i < TRP_CT; i++)
|