diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-03-17 09:18:00 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-03-17 09:18:00 +0100 |
commit | 0133a98b735729701c7dd56b49dea2c25b5b2550 (patch) | |
tree | b875ff4f8898ab0ce24ceb4b7f321b6adc195e38 /tests | |
parent | 35b4a2c553557b7b012edabf1bab805c74bd7892 (diff) | |
parent | 1390de4b749e922ff9d7d5b8694aee532a6d28d0 (diff) | |
download | yosys-0133a98b735729701c7dd56b49dea2c25b5b2550.tar.gz yosys-0133a98b735729701c7dd56b49dea2c25b5b2550.tar.bz2 yosys-0133a98b735729701c7dd56b49dea2c25b5b2550.zip |
Merge branch 'hansi'
Diffstat (limited to 'tests')
-rw-r--r-- | tests/openmsp430/.gitignore | 3 | ||||
-rwxr-xr-x[-rw-r--r--] | tests/openmsp430/run-synth.sh | 0 | ||||
-rwxr-xr-x | tests/simple/run-test.sh | 7 |
3 files changed, 10 insertions, 0 deletions
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 diff --git a/tests/openmsp430/run-synth.sh b/tests/openmsp430/run-synth.sh index e4d6bc720..e4d6bc720 100644..100755 --- a/tests/openmsp430/run-synth.sh +++ b/tests/openmsp430/run-synth.sh 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 |