summaryrefslogtreecommitdiff
path: root/tests/realmath/run-test.sh
blob: a28863d31460fc9aa828ae6c24a04218978682eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
set -e

rm -rf temp
mkdir -p temp
echo "generating tests.."
python generate.py

cd temp
echo "running tests.."
for ((i = 0; i < 100; i++)); do
	echo -n "[$i]"
	idx=$( printf "%05d" $i )
	../../../yosys -q uut_${idx}.ys
	iverilog -o uut_${idx}_tb uut_${idx}_tb.v uut_${idx}.v uut_${idx}_syn.v
	./uut_${idx}_tb | tee uut_${idx}.err
	if test -s uut_${idx}.err; then
		exit 1
	fi
	rm -f uut_${idx}.err
done
echo