diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2019-02-19 15:25:03 -0800 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2019-02-19 15:25:03 -0800 |
commit | ef1a1402bcecd5cf3edc41b9842ab5500e52a95e (patch) | |
tree | 3fb3d3933c8b8b074afa46467b5fceed2c4495d9 /tests/techmap/run-test.sh | |
parent | 7b026c4bc316a44f2722cd4ddc96b4da1d1458b6 (diff) | |
download | yosys-ef1a1402bcecd5cf3edc41b9842ab5500e52a95e.tar.gz yosys-ef1a1402bcecd5cf3edc41b9842ab5500e52a95e.tar.bz2 yosys-ef1a1402bcecd5cf3edc41b9842ab5500e52a95e.zip |
Add a quick abc9 test
Diffstat (limited to 'tests/techmap/run-test.sh')
-rwxr-xr-x | tests/techmap/run-test.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/techmap/run-test.sh b/tests/techmap/run-test.sh index e2fc11e52..129451e08 100755 --- a/tests/techmap/run-test.sh +++ b/tests/techmap/run-test.sh @@ -8,3 +8,11 @@ for x in *_runtest.sh; do exit 1 fi done + +for d in */; do + if [ -x $d/run-test.sh ]; then + cd $d + bash run-test.sh + cd .. + fi +done |