aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lut/run-test.sh
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2018-12-05 04:50:38 +0000
committerwhitequark <whitequark@whitequark.org>2018-12-05 17:13:27 +0000
commit9ef078848a5b121336b83043c565ce47433eb2d8 (patch)
treefdfa9d1c1fbe809815e8a26310d8197f3695cee6 /tests/lut/run-test.sh
parent12596b5003bcc6180cda04ce2aaaa2a8145f8a9b (diff)
downloadyosys-9ef078848a5b121336b83043c565ce47433eb2d8.tar.gz
yosys-9ef078848a5b121336b83043c565ce47433eb2d8.tar.bz2
yosys-9ef078848a5b121336b83043c565ce47433eb2d8.zip
gate2lut: new techlib, for converting Yosys gates to FPGA LUTs.
Diffstat (limited to 'tests/lut/run-test.sh')
-rw-r--r--tests/lut/run-test.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/lut/run-test.sh b/tests/lut/run-test.sh
new file mode 100644
index 000000000..207417fa6
--- /dev/null
+++ b/tests/lut/run-test.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+set -e
+for x in *.v; do
+ echo "Running $x.."
+ ../../yosys -q -s check_map.ys -l ${x%.v}.log $x
+done