Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(Do not merge) Draft OC-191 #321

Draft
wants to merge 11 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
Normalize validation process output
References:
* [OC-193] (CP-91) Unit test validation results should be normalized

Signed-off-by: Alex Nelson <[email protected]>
ajnelson-nist committed Dec 2, 2021
commit 34fd61cc0640c460270520ad8a3f5d4ca929f074
10 changes: 9 additions & 1 deletion tests/examples/Makefile
Original file line number Diff line number Diff line change
@@ -49,9 +49,17 @@ all: \
--ont-graph $(tests_srcdir)/uco_monolithic.ttl \
--shacl $(tests_srcdir)/uco_monolithic.ttl \
--shacl-file-format turtle \
--output _$@ \
--output __$@ \
$< \
; rc=$$? ; test 0 -eq $$rc -o 1 -eq $$rc
java -jar $(top_srcdir)/lib/rdf-toolkit.jar \
--infer-base-iri \
--inline-blank-nodes \
--source __$@ \
--source-format turtle \
--target _$@ \
--target-format turtle
rm __$@
mv _$@ $@

check: \