-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_gcc.sh
executable file
·61 lines (54 loc) · 1.28 KB
/
test_gcc.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
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
#!/bin/bash
set -e
{ set +x; } 2>/dev/null
if [ -z "$GCC_HOME" ]; then
echo "GCC_HOME is undefined"
exit
fi
CC=$GCC_HOME/bin/arm-none-eabi-gcc
if ! command -v $CC &> /dev/null
then
echo "GCC for ARM is not installed. Please install from developer.arm.com"
exit
fi
function arch_supports_cores()
{
case "$1" in
"armv6m")
cores=("cm0" "cm0p")
;;
"armv7m")
cores=("cm0" "cm0p" "cm3")
;;
"armv7em")
cores=("cm0" "cm0p" "cm3" "cm4" "cm4f" "cm7-d16" "cm7-sp-d16")
;;
esac
}
declare -a archs=("armv6m" "armv7m" "armv7em")
declare -a gcc_tests=("hello_world" "instruction-test-bench" "pi")
for i in "${gcc_tests[@]}"
do
cd tests/$i
make -s clean
make
cd ../..
for a in "${archs[@]}"
do
echo -e "\e[1m========================================"
echo -e "\e[1mGCC TEST: $i / $a"
echo -e "\e[1m========================================\e[0m"
arch_supports_cores $a
for c in "${cores[@]}"
do
echo "./target/release/zmu-$a run tests/$i/$i-$c.elf"
# read return code and abort on failure:
./target/release/zmu-$a run tests/$i/$i-$c.elf
if [[ $? -ne 0 ]]; then
echo "Test failed"
exit $?
fi
echo ""
done
done
done