forked from dydra/http-api-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_all.sh
executable file
·53 lines (48 loc) · 1.4 KB
/
run_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#! /bin/bash
function run () {
bash ./run.sh $@
let "all_errors += $?"
cat failed.txt >> failed_all.txt
}
set_store_features
echo "features: "
echo "STORE_STATEMENT_ANNOTATION = ${STORE_STATEMENT_ANNOTATION}"
echo "STORE_INDEXED_TIMES = ${STORE_INDEXED_TIMES}"
echo "STORE_INDEXED_EVENTS = ${STORE_INDEXED_EVENTS}"
if [[ "$1" != "" ]]
then
for ((i = 0; i < $1; i ++)) do
echo -n "${i}: "
bash run_all.sh
done;
else
all_errors=0
echo -n > failed_all.txt # start with empty output file
date
initialize_all_repositories
# problems with the repository content
# run extensions/git
run extensions/graph-store-protocol
run extensions/sparql-protocol/collation
run extensions/sparql-protocol/meta-data
run extensions/sparql-protocol/describe
run extensions/sparql-protocol/parameters
run extensions/sparql-protocol/provenance
run extensions/sparql-protocol/revisions
run extensions/sparql-protocol/sparql-operators
# some translations depend on gensym state
# run extensions/sparql-protocol/sql
run extensions/sparql-protocol/temporal-data
run extensions/sparql-protocol/values
run extensions/sparql-protocol/views
run extensions/sparql-protocol/xpath-operators
# no tests yet run linked-data-platform
run sparql-graph-store-http-protocol
run sparql-protocol
run tickets
run triple-pattern-fragments
run web-ui
run accounts-api/accounts/openrdf-sesame/authorization/
echo
echo "${all_errors} errors for run_all.sh"
fi