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 bf27d15f8..eb6fd10ba 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 From a6f004e6f84e2a6938658bdfed877fa3485a5d6f Mon Sep 17 00:00:00 2001 From: Johann Glaser Date: Sat, 16 Mar 2013 21:23:25 +0100 Subject: set executable flags to run-synth.sh, added .gitignore Signed-off-by: Clifford Wolf --- tests/openmsp430/.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/openmsp430/.gitignore (limited to 'tests') diff --git a/tests/openmsp430/.gitignore b/tests/openmsp430/.gitignore new file mode 100644 index 000000000..eaf13a592 --- /dev/null +++ b/tests/openmsp430/.gitignore @@ -0,0 +1,3 @@ +fsm_info.txt +synth.v +synth.log -- cgit v1.2.3 From e6cbeb5b16b8bf422c9cc7fe9aaff3fb2fc86d7f Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sun, 17 Mar 2013 09:10:09 +0100 Subject: Set execute bit on tests/openmsp430/run-synth.sh for real --- tests/openmsp430/run-synth.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 tests/openmsp430/run-synth.sh (limited to 'tests') diff --git a/tests/openmsp430/run-synth.sh b/tests/openmsp430/run-synth.sh old mode 100644 new mode 100755 -- cgit v1.2.3