diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-06-07 11:41:54 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-06-07 11:41:54 +0200 |
commit | b637b3109d61ff2d120978975a7b8cdc2ca3f418 (patch) | |
tree | 68c54d800e9907f0c3a2daf43183bac73a187dbe /tests/simple | |
parent | b894187cf66dfa346eddeccf42c38c0635db9524 (diff) | |
parent | 88f59770932720cfc1e987c98e53faedd7388ed8 (diff) | |
download | yosys-b637b3109d61ff2d120978975a7b8cdc2ca3f418.tar.gz yosys-b637b3109d61ff2d120978975a7b8cdc2ca3f418.tar.bz2 yosys-b637b3109d61ff2d120978975a7b8cdc2ca3f418.zip |
Merge branch 'implicit_named_connection' of https://github.com/tux3/yosys into tux3-implicit_named_connection
Diffstat (limited to 'tests/simple')
-rwxr-xr-x | tests/simple/run-test.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/simple/run-test.sh b/tests/simple/run-test.sh index aaa1cf940..967ac49f2 100755 --- a/tests/simple/run-test.sh +++ b/tests/simple/run-test.sh @@ -17,4 +17,5 @@ if ! which iverilog > /dev/null ; then exit 1 fi -exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v +shopt -s nullglob +exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.{sv,v} |