blob: ffbf73db5be092f93dbe052cc66154468ae8aa58 (
plain)
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
|
#!/usr/bin/env bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/..
printf "******************************************\n"
printf "* Typechecking tests *\n"
printf "******************************************\n\n"
./test/typecheck/run_tests.sh
printf "******************************************\n"
printf "* Ocaml tests *\n"
printf "******************************************\n\n"
./test/ocaml/run_tests.sh
printf "******************************************\n"
printf "* C tests *\n"
printf "******************************************\n\n"
./test/c/run_tests.sh
printf "******************************************\n"
printf "* Lem tests *\n"
printf "******************************************\n\n"
./test/lem/run_tests.sh
# Need to work on these tests some more
# printf "******************************************\n"
# printf "* Builtins tests *\n"
# printf "******************************************\n\n"
# ./test/builtins/run_tests.sh
printf "******************************************\n"
printf "* ARM spec tests *\n"
printf "******************************************\n\n"
./test/arm/run_tests.sh
printf "******************************************\n"
printf "* RISCV spec tests *\n"
printf "******************************************\n\n"
./test/riscv/run_tests.sh
printf "******************************************\n"
printf "* CHERI spec tests *\n"
printf "******************************************\n\n"
./test/cheri/run_tests.sh
|