mirror of https://github.com/YosysHQ/yosys.git
added ckeck for Icarus Verilog, otherwise the tests are silently stopped
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
bcae4aae6e
commit
3cfbc18601
|
@ -1,3 +1,10 @@
|
||||||
#!/bin/bash
|
#!/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
|
make -C ../.. || exit 1
|
||||||
exec bash ../tools/autotest.sh *.v
|
exec bash ../tools/autotest.sh *.v
|
||||||
|
|
Loading…
Reference in New Issue