blob: eb6fd10bab57b0599b31466a728e00aec120ded3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# check for Icarus Verilog
if ! which iverilog > /dev/null ; then
echo "$0: Error: Icarus Verilog 'iverilog' not found."
exit 1
fi
make -C ../.. || exit 1
exec bash ../tools/autotest.sh *.v
|