Skip to content

Commit e9ab560

Browse files
committed
Cross CSV and TSV output testing with prefix testing
No effects were observed on Make-managed files. Signed-off-by: Alex Nelson <[email protected]>
1 parent 7159847 commit e9ab560

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
,?nFile
2+
0,kb:file-1
3+
1,kb:file-2
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
?nFile
2+
0 kb:file-1
3+
1 kb:file-2

tests/case_utils/case_sparql_select/Makefile

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ top_srcdir := $(shell cd ../../.. ; pwd)
1818
tests_srcdir := $(top_srcdir)/tests
1919

2020
all: \
21+
prefixed_results.csv \
2122
prefixed_results.html \
2223
prefixed_results.md \
24+
prefixed_results.tsv \
2325
subclass-explicit-none.md \
2426
subclass-implicit-any.md \
2527
w3-output.csv \
@@ -50,8 +52,15 @@ check: \
5052
check-subclass
5153

5254
check-prefixed_results: \
55+
check-prefixed_results-csv \
5356
check-prefixed_results-html \
54-
check-prefixed_results-md
57+
check-prefixed_results-md \
58+
check-prefixed_results-tsv
59+
60+
check-prefixed_results-csv: \
61+
.check-prefixed_results.csv \
62+
prefixed_results.csv
63+
diff $^
5564

5665
check-prefixed_results-html: \
5766
.check-prefixed_results.html \
@@ -63,6 +72,11 @@ check-prefixed_results-md: \
6372
prefixed_results.md
6473
diff $^
6574

75+
check-prefixed_results-tsv: \
76+
.check-prefixed_results.tsv \
77+
prefixed_results.tsv
78+
diff $^
79+
6680
check-subclass: \
6781
check-subclass-explicit-none \
6882
check-subclass-implicit-any

0 commit comments

Comments
 (0)