diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-20 02:19:44 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-20 02:19:44 +0200 |
commit | 3f9f0c047d46f8b84a5a73e6c9437d0ee3793324 (patch) | |
tree | 5de57fbb6abaf47e4ecb7a14bea34f6ef695486d /tests | |
parent | a30e2857c730c1adc1c6af2c995059af904eec0b (diff) | |
download | yosys-3f9f0c047d46f8b84a5a73e6c9437d0ee3793324.tar.gz yosys-3f9f0c047d46f8b84a5a73e6c9437d0ee3793324.tar.bz2 yosys-3f9f0c047d46f8b84a5a73e6c9437d0ee3793324.zip |
Added tests/vloghtb
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vloghtb/.gitignore | 7 | ||||
-rwxr-xr-x | tests/vloghtb/run-test.sh | 11 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/vloghtb/.gitignore b/tests/vloghtb/.gitignore new file mode 100644 index 000000000..da1ffa41d --- /dev/null +++ b/tests/vloghtb/.gitignore @@ -0,0 +1,7 @@ +Makefile +refdat +rtl +scripts +spec +check_yosys +vloghammer_tb.tar.bz2 diff --git a/tests/vloghtb/run-test.sh b/tests/vloghtb/run-test.sh new file mode 100755 index 000000000..9bef44502 --- /dev/null +++ b/tests/vloghtb/run-test.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -ex + +rm -rf Makefile refdat rtl scripts spec vloghammer_tb.tar.bz2 +wget http://www.clifford.at/yosys/nogit/vloghammer_tb.tar.bz2 +tar --strip=1 -xjf vloghammer_tb.tar.bz2 + +make clean +make -j4 YOSYS_BIN=$PWD/../../yosys YOSYS_SCRIPT="proc;;" check_yosys + |