2013-01-05 11:13:26 +01:00
|
|
|
#!/bin/bash
|
2013-03-16 21:21:38 +01:00
|
|
|
|
|
|
|
|
# check for Icarus Verilog
|
|
|
|
|
if ! which iverilog > /dev/null ; then
|
|
|
|
|
echo "$0: Error: Icarus Verilog 'iverilog' not found."
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2014-07-16 10:03:07 +02:00
|
|
|
exec bash ../tools/autotest.sh -G *.v
|