aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap/abc9/run-test.sh
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2019-02-19 15:25:03 -0800
committerEddie Hung <eddieh@ece.ubc.ca>2019-02-19 15:25:03 -0800
commitef1a1402bcecd5cf3edc41b9842ab5500e52a95e (patch)
tree3fb3d3933c8b8b074afa46467b5fceed2c4495d9 /tests/techmap/abc9/run-test.sh
parent7b026c4bc316a44f2722cd4ddc96b4da1d1458b6 (diff)
downloadyosys-ef1a1402bcecd5cf3edc41b9842ab5500e52a95e.tar.gz
yosys-ef1a1402bcecd5cf3edc41b9842ab5500e52a95e.tar.bz2
yosys-ef1a1402bcecd5cf3edc41b9842ab5500e52a95e.zip
Add a quick abc9 test
Diffstat (limited to 'tests/techmap/abc9/run-test.sh')
-rwxr-xr-xtests/techmap/abc9/run-test.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/techmap/abc9/run-test.sh b/tests/techmap/abc9/run-test.sh
new file mode 100755
index 000000000..e2fc11e52
--- /dev/null
+++ b/tests/techmap/abc9/run-test.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+set -e
+for x in *_runtest.sh; do
+ echo "Running $x.."
+ if ! bash $x &> ${x%.sh}.log; then
+ tail ${x%.sh}.log
+ echo ERROR
+ exit 1
+ fi
+done