blob: 838394170d49b390d829762dcbc4b6debc34e5ea (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#!/usr/bin/env bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
SAILDIR="$DIR/../.."
rm -f $DIR/tests.xml
# shellcheck source=../test_helpers.sh
source "$SAILDIR/test/test_helpers.sh"
SAILLIBDIR="$DIR/../../lib/"
printf "<testsuites>\n" >> $DIR/tests.xml
cd $SAILDIR/aarch64
printf "Compiling specification...\n"
if $SAILDIR/sail -no_lexp_bounds_check -o aarch64_test -ocaml no_vector.sail 1> /dev/null 2> /dev/null;
then
green "compiled no_vector specification" "ok";
mv aarch64_test $DIR/;
cd $DIR;
for i in `ls *.elf`;
do
$DIR/aarch64_test $i 2> /dev/null 1> ${i%.elf}.result
if diff ${i%.elf}.result ${i%.elf}.expect;
then
green "ran $i" "ok"
else
red "failed $i" "fail"
fi;
rm -f *.result
done;
rm -f aarch64_test
else
red "compiling no_vector specification" "fail";
for i in `ls *.elf`;
do
red "failed $i" "fail"
done
fi
printf "\nLoading specification into interpreter...\n"
cd $SAILDIR/aarch64
if $SAILDIR/sail -undefined_gen -no_lexp_bounds_check -is $DIR/test.isail no_vector.sail 1> /dev/null 2> /dev/null;
then
green "loaded no_vector specification" "ok";
if diff $DIR/test_O2.expect $DIR/iresult;
then
green "interpreter success" "ok"
else
red "interpreter failed" "fail"
fi;
rm -f $DIR/iresult
else
red "loading no_vector specification" "fail"
fi
finish_suite "ARM generated spec tests"
printf "</testsuites>\n" >> $DIR/tests.xml
|