aboutsummaryrefslogtreecommitdiffstats
path: root/tests/proc/run-test.sh
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-20 12:00:12 -0700
committerEddie Hung <eddie@fpgeh.com>2019-08-20 12:00:12 -0700
commitc4d4c6db3f4bff22b2fa3a152c5c33d648af81f8 (patch)
treeb465265f1bc72f0b943fc6e4be7f4661e4e5734d /tests/proc/run-test.sh
parent1f03154a0cc08c1bde59036d6b0a4a40a3898c3d (diff)
parent14c03861b6d178c85d6963e673ed51bc142457e1 (diff)
downloadyosys-c4d4c6db3f4bff22b2fa3a152c5c33d648af81f8.tar.gz
yosys-c4d4c6db3f4bff22b2fa3a152c5c33d648af81f8.tar.bz2
yosys-c4d4c6db3f4bff22b2fa3a152c5c33d648af81f8.zip
Merge remote-tracking branch 'origin/master' into xaig_dff
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