aboutsummaryrefslogtreecommitdiffstats
path: root/tests/proc/run-test.sh
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2019-08-19 16:44:23 +0000
committerwhitequark <whitequark@whitequark.org>2019-08-19 16:44:23 +0000
commit4a942ba7b9bb76f207adf23369f46d31f7607b75 (patch)
tree99aa7de39093fa08b8b531dc4454dede36bd72fb /tests/proc/run-test.sh
parent4adcbecec5c6bfcdd3ed1d6ed753d3a7670e3eea (diff)
downloadyosys-4a942ba7b9bb76f207adf23369f46d31f7607b75.tar.gz
yosys-4a942ba7b9bb76f207adf23369f46d31f7607b75.tar.bz2
yosys-4a942ba7b9bb76f207adf23369f46d31f7607b75.zip
proc_clean: fix order of switch insertion.
Fixes #1268.
Diffstat (limited to 'tests/proc/run-test.sh')
-rwxr-xr-xtests/proc/run-test.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/proc/run-test.sh b/tests/proc/run-test.sh
new file mode 100755
index 000000000..44ce7e674
--- /dev/null
+++ b/tests/proc/run-test.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+set -e
+for x in *.ys; do
+ echo "Running $x.."
+ ../../yosys -ql ${x%.ys}.log $x
+done