summaryrefslogtreecommitdiff
path: root/test/run_tests.sh
blob: 45013f0d53c072f1b6e3b57232edb60af4c04d22 (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
#!/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

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