From 3cfbc18601c8735b06d4c80501aeed90353070eb Mon Sep 17 00:00:00 2001 From: Johann Glaser Date: Sat, 16 Mar 2013 21:21:38 +0100 Subject: added ckeck for Icarus Verilog, otherwise the tests are silently stopped Signed-off-by: Clifford Wolf --- tests/simple/run-test.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests') diff --git a/tests/simple/run-test.sh b/tests/simple/run-test.sh index bf27d15f..eb6fd10b 100755 --- a/tests/simple/run-test.sh +++ b/tests/simple/run-test.sh @@ -1,3 +1,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 -- cgit v1.2.3