blob: b3224aea6fda4678f59293a5e3705ce8213ad6c0 (
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
|
#!/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 "* 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
|