-
Notifications
You must be signed in to change notification settings - Fork 3
/
regtest.sh
executable file
·27 lines (26 loc) · 1019 Bytes
/
regtest.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
# do a clean build and test of T-CREST
# this is called from regtest-init.sh
# within a newly created t-crest root named t-crest-test
# Do individual tests as test all does not work
# To debug on Helena, put all output into the result (just now):
./misc/build.sh >> ../result.txt
# this test is not supported from build.sh
cd patmos
make test >> ../result.txt
cd ..
# this is now the simulator test
./misc/build.sh -t simulator >> result.txt
./misc/build.sh -t patmos >> result.txt
./misc/build.sh bench
./misc/build.sh -t bench >> result.txt
##./misc/build.sh -t gold # no tests
##./misc/build.sh -t llvm # fails always
##./misc/build.sh -t newlib # no tests
##./misc/build.sh -t compiler-rt # no tests
# RTEMS does not build on my (MS) machine - needs some more checks on dependencies
##./misc/build.sh -t rtems
##./misc/build.sh -t rtems-test
##./misc/build.sh -t rtems-examples
##./misc/build.sh -t eclipse # this is a alias to llvm
##./misc/build.sh -t aegean # no tests
##./misc/build.sh -t poseidon # no tests