yosys/tests/realmath/run-test.sh

25 lines
513 B
Bash
Raw Normal View History

2014-06-14 12:56:22 -05:00
#!/bin/bash
set -e
rm -rf temp
mkdir -p temp
echo "generating tests.."
2015-08-22 02:59:25 -05:00
python3 generate.py
2014-06-14 12:56:22 -05:00
cd temp
echo "running tests.."
for ((i = 0; i < 100; i++)); do
echo -n "[$i]"
idx=$( printf "%05d" $i )
../../../yosys -qq uut_${idx}.ys
2014-06-14 12:56:22 -05:00
iverilog -o uut_${idx}_tb uut_${idx}_tb.v uut_${idx}.v uut_${idx}_syn.v
2014-06-15 02:31:03 -05:00
./uut_${idx}_tb | tee uut_${idx}.err
if test -s uut_${idx}.err; then
echo "Note: Make sure that 'iverilog' is an up-to-date git checkout of Icarus Verilog."
2014-06-15 02:31:03 -05:00
exit 1
fi
rm -f uut_${idx}.err
2014-06-14 12:56:22 -05:00
done
echo