forked from AdaCore/bb-runtimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-tests.sh
executable file
·298 lines (263 loc) · 7.85 KB
/
run-tests.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#!/bin/sh
# Ad-hoc script to run the ravenscar testsuite.
flag_continue=
flag_ignore_err=n
flag_remove=y
flag_verbose=
rts=../install
while [ $# -ne 0 ]; do
case $1 in
-c) flag_continue=y ;;
-k) flag_ignore_err=y ;;
-v) flag_verbose=y ;;
--RTS=*) rts=`echo $1 | sed 's/--RTS=//'`;;
-*) echo "unknown option $1"; exit 1;;
*) break
esac
shift
done
if [ $# -lt 2 ]; then
echo "usage: $0 [-c] [-k] [config] ravenscar-testsuite-path [tests]"
echo " -c : continue from previous run"
echo " -k : do not stop in case of error"
exit 1
fi
config=$1
testsuite_dir=$2
shift 2
build_file=`pwd`/build_output
BUILDOPTS=
case $config in
ravenscar-sfp/prep-nofpu | ravenscar-sfp/prep | ravenscar-full/prep)
support_dirs="powerpc-elf ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,powerpc,ravenscar-full-prep,ravenscar-sfp-prep,powerpc-elf"
cross=powerpc-elf
run=run_prep
;;
ravenscar-sfp/p2020 | ravenscar-full/p2020)
support_dirs="powerpc-eabispe-p2010 ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,powerpc,p2020,powerpc-eabispe,high_interrupt"
cross=powerpc-eabispe
run=run_p2020
;;
ravenscar-sfp/p5566)
support_dirs="powerpc-eabispe-p5566 ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,powerpc,p5566,powerpc-eabispe,high_interrupt"
cross=powerpc-eabispe
run=run_p5566
;;
ravenscar-minimal/8349e )
support_dirs="powerpc-elf-8349e ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,powerpc,powerpc-elf,ravenscar-minimal-8349e,no_float,high_interrupt"
cross=powerpc-elf
run=run_8349e
;;
ravenscar-sfp/8641d)
support_dirs="powerpc-eabispe-p2010 ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,powerpc,powerpc-elf,high_interrupt,smp"
cross=powerpc-elf
run=run_8641d
;;
ravenscar-sfp/lm3s)
support_dirs="powerpc-elf ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,arm,lm3s,high_interrupt"
cross=arm-eabi
run=run_lm3s
;;
ravenscar-sfp/tms570)
support_dirs="arm-eabi ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,arm"
cross=arm-eabi
run=run_tms570
BUILDOPTS=-XLOADER=HIRAM
;;
ravenscar-sfp/xtratum-tms570 | ravenscar-full/xtratum-tms570)
support_dirs="arm-eabi ravenscar-sfp"
discr="no_libc,no_serial_output,no_cache_control,no_accurate_clock,no_long_delay,arm,xtratum"
cross=arm-eabi
run=run_xtratum_tms570
BUILDOPTS="-largs -Wl,-Ttext=0x40000,-Tdata=0x8020000"
;;
ravenscar-sfp/leon)
support_dirs=leon-elf
discr="no_libc,no_accurate_clock,no_cache_control,no_long_delay,sparc,leon"
cross=sparc-elf
run=run_leon
;;
ravenscar-sfp/linux-x86)
support_dirs=native
discr="no_cache_control,no_long_delay,no_interrupt,no_serial_output,x86"
cross=
run=run_native
;;
*) echo "$0: unsupported config \"$config\""
exit 2
;;
esac
case $config in
ravenscar-sfp/* | ravenscar-minimal/* )
discr="$discr,rts-ravenscar-sfp"
;;
ravenscar-full/*)
discr="$discr,rts-ravenscar"
;;
*) echo "$0: unsupported config \"$config\" (2)"
exit 2
;;
esac
set -e
run_prep()
{
~/work/qemu-couverture/ppc-softmmu/qemu-system-ppc -M prep -nographic -no-reboot -bios - -kernel $1
}
run_p2020()
{
~/work/qemu-e500v2/ppc-softmmu/qemu-system-ppc -M p2010rdb -nographic -no-reboot -kernel $1
}
run_8641d()
{
/gournay.a/users/gingold/sandbox-49/x86-linux/gnatpython/install/lib/python2.7/site-packages/gnatpython/internal/data/libexec/x86-linux/qemu-2.0.0/qemu-system-ppc-20140720 -nographic -M wrsbc8641d_vxworks -no-reboot -bios - -kernel $1
}
run_p5566()
{
powerpc-eabispe-objcopy --srec-forceS3 -O srec $1 ${1}.srec
../examples/mpc5566-bam/sendsrec.py -r /dev/cu.PL* ${1}.srec
}
run_leon()
{
~/work/qemu-couverture/sparc-softmmu/qemu-system-sparc -M at697 -nographic -kernel $1 -no-reboot
}
run_lm3s()
{
cat > lm3s.gdb <<EOF
target remote :3333
monitor reset halt
break exit
break fault
load
c
monitor reset halt
quit
EOF
arm-eabi-gdb -q -x lm3s.gdb $1
}
run_8349e ()
{
qemu-system-ppc -nographic -M wrsbc834x_vxworks -no-reboot -L . -bios - -kernel $1
}
run_tms570()
{
arm-eabi-objcopy --srec-forceS3 -O srec $1 ${1}.srec
../examples/mpc5566-monitor/p5566/sendsrec.py -s 115200 -r /dev/cu.usbserial-TI* ${1}.srec
}
run_xtratum_tms570()
{
(
sz=`arm-eabi-size $1 | cut -c 17-24 | tail -1`
if [ $sz -gt 128000 ]; then
echo "Too big (size=$sz)"
return 1
fi
cp $1 ~/work/xtratum/hello_world/partition0
cd ~/work/xtratum/hello_world
rm -f kernel.out xm_cf.bin.xmc
make > /dev/null 2>&1
~/work/qemu-armeb/armeb-softmmu/qemu-system-armeb -nographic -no-reboot -M TMS570 -kernel kernel.out
)
}
if [ "$flag_continue" != "y" ]; then
rm -f $build_file
rm -rf ravenscar
mkdir ravenscar
fi
cd ravenscar
#echo 'project sfp extends "../install/runtime" is' > sfp.gpr
echo 'project sfp is' > sfp.gpr
echo ' for Source_Dirs use (".",' >> sfp.gpr
for f in $support_dirs; do
echo " \"$testsuite_dir/support/target-support/$f\"," >> sfp.gpr
done
echo " \"$testsuite_dir/support\");" >> sfp.gpr
echo 'end sfp;' >> sfp.gpr
if [ $# -eq 0 ]; then
files=`cd $testsuite_dir/tests; echo c/*.ada; echo d/*.ada; echo e/*.ada`
else
if [ $# -eq 1 ]; then
flag_remove=no
fi
testnames=$*
files=`cd $testsuite_dir/tests; for i in $testnames; do echo ?/$i.ada; done`
fi
for file in $files;
do
dead="false"
xfail="false"
#options="-O0 -fno-inline"
options=-O
filename=`basename $file`
name=${filename%\.*}
if [ -f $name.res ]; then
echo "Already run $name"
continue;
fi
if [ -f $testsuite_dir/etc/$name.opt ]; then
opt_out=`opt-parser $discr,32bits,ALL $testsuite_dir/etc/$name.opt`
#echo $opt_out
eval "$opt_out"
fi
echo "******************** $name **********************************";
if [ "$dead" != "false" ]; then
echo "$name:DEAD:$dead"
echo "$name:DEAD:$dead" >> $build_file
elif [ "$xfail" != "false" ]; then
echo "$name:XFAIL:$xfail"
echo "$name:XFAIL:$xfail" >> $build_file
else
# Extract the test
${cross}-gnatchop -r -q -gnat05 -w -c $testsuite_dir/tests/$file
# Build the test
cmd="gprbuild --target=${cross} --RTS=$rts -q -Psfp.gpr -gnat05 -o $name test $BUILDOPTS -cargs $options"
[ "$flag_verbose" = "y" ] && echo $cmd
if eval $cmd; then
echo "$name:Compilation OK" >> $build_file
err=n
else
echo "$name:PROBLEM:error during compilation" >> $build_file
err=y
fi
# Run the test (if build is ok)
if [ $err = n ]; then
$run $name | tee $name.res
if ! grep -q PASSED $name.res; then
echo "FAILURE : $name"
err=y
fi
fi
# Remove the binary (if run is ok), or mark the failure
if [ $err = n ]; then
if [ "$flag_remove" = "y" ]; then
rm $name
fi
else
echo "$name" >> failed
if [ ! "$flag_ignore_err" = "y" ]; then
break
fi
fi
# Remove objects
objs=`echo *.ad? | sed -e s/ad./o/g`
if [ "$flag_remove" = "y" ]; then
rm -f $objs *.ad?
fi
# leon3-elf-gnatclean test
fi
done
if [ -f failed ]; then
echo "Failures:"
cat failed
exit 1
fi
#rm *.o
#rm *.ali
#rm *.ads
#rm *.adb