forked from rems-project/sail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_tests.sh
executable file
·58 lines (39 loc) · 1.42 KB
/
run_tests.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
54
55
56
57
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
./run_core_tests.sh
printf "\n==========================================\n"
printf "Lem tests\n"
printf "==========================================\n"
./lem/run_tests.py
printf "\n==========================================\n"
printf "Monomorphisation tests\n"
printf "==========================================\n"
./mono/run_tests.sh
printf "\n==========================================\n"
printf "LaTeX tests\n"
printf "==========================================\n"
./latex/run_tests.sh
printf "\n==========================================\n"
printf "C tests\n"
printf "==========================================\n"
TEST_PAR=8 ./c/run_tests.py
printf "\n==========================================\n"
printf "SMT tests\n"
printf "==========================================\n"
TEST_PAR=8 ./smt/run_tests.py
printf "\n==========================================\n"
printf "Builtins tests\n"
printf "==========================================\n"
TEST_PAR=4 ./builtins/run_tests.py
printf "\n==========================================\n"
printf "ARM spec tests\n"
printf "==========================================\n"
./arm/run_tests.sh
# This specification has bitrotted
#
# printf "\n==========================================\n"
# printf "aarch64_small spec tests\n"
# printf "==========================================\n"
#
# ./aarch64_small/run_tests.sh