blob: 369e72b2bcb2f423054d82358f7b1b3a7d1ab33f (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#!/usr/bin/env bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
SAILDIR="$DIR/../.."
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
NC='\033[0m'
rm -f $DIR/tests.xml
pass=0
fail=0
XML=""
function green {
(( pass += 1 ))
printf "$1: ${GREEN}$2${NC}\n"
XML+=" <testcase name=\"$1\"/>\n"
}
function yellow {
(( fail += 1 ))
printf "$1: ${YELLOW}$2${NC}\n"
XML+=" <testcase name=\"$1\">\n <error message=\"$2\">$2</error>\n </testcase>\n"
}
function red {
(( fail += 1 ))
printf "$1: ${RED}$2${NC}\n"
XML+=" <testcase name=\"$1\">\n <error message=\"$2\">$2</error>\n </testcase>\n"
}
function finish_suite {
printf "$1: Passed ${pass} out of $(( pass + fail ))\n\n"
XML=" <testsuite name=\"$1\" tests=\"$(( pass + fail ))\" failures=\"${fail}\" timestamp=\"$(date)\">\n$XML </testsuite>\n"
printf "$XML" >> $DIR/tests.xml
XML=""
pass=0
fail=0
}
SAILLIBDIR="$DIR/../../lib/"
printf "<testsuites>\n" >> $DIR/tests.xml
cd $SAILDIR/riscv
printf "Building RISCV specification...\n"
if make -C $SAILDIR/riscv platform ;
then
green "Building RISCV specification" "ok"
else
red "Building RISCV specification" "fail"
fi
for test in $DIR/tests/*.elf; do
if $SAILDIR/riscv/platform "$test" >"${test/.elf/.out}" 2>&1 && grep -q SUCCESS "${test/.elf/.out}"
then
green "$(basename $test)_ocaml" "ok"
else
red "$(basename $test)_ocaml" "fail"
fi
done
if make -C $SAILDIR/riscv riscv_c;
then
green "Building RISCV specification to C" "ok"
else
red "Building RISCV specification to C" "fail"
fi
for test in $DIR/tests/*.elf; do
$SAILDIR/sail -elf $test -o ${test%.elf}.bin 2> /dev/null;
if timeout 5 $SAILDIR/riscv/riscv_c --binary=0x1000,reset_vec.bin --image=${test%.elf}.bin > ${test%.elf}.cout 2>&1 && grep -q SUCCESS ${test%.elf}.cout
then
green "$(basename $test)_c" "ok"
else
red "$(basename $test)_c" "fail"
fi
done
printf "Interpreting RISCV specification...\n"
for test in $DIR/tests/*.elf; do
if {
timeout 30 $SAILDIR/sail -i $SAILDIR/riscv/riscv_all.sail $SAILDIR/riscv/main.sail > ${test%.elf}.iout 2>&1 <<EOF
:bin 0x1000 $SAILDIR/riscv/reset_vec.bin
:elf $test
main()
:run
EOF
} && grep -q SUCCESS ${test%.elf}.iout
then
green "$(basename $test)_interpreter" "ok"
else
red "$(basename $test)_interpreter" "fail"
fi
done
finish_suite "RISCV tests"
printf "</testsuites>\n" >> $DIR/tests.xml
|