diff options
author | whitequark <whitequark@whitequark.org> | 2019-09-30 17:38:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-30 17:38:20 +0000 |
commit | 5c5881695dd6570b933eccfd323f8b0e60b62718 (patch) | |
tree | c41e1eeee78edc45ab650c622a7b78a228a39728 /tests/rpc/run-test.sh | |
parent | ed47bd78e1896280955835a2acf28f08f11aac24 (diff) | |
parent | 99a7f39084cf4b9cd21e2a1e4f4a842993dfd147 (diff) | |
download | yosys-5c5881695dd6570b933eccfd323f8b0e60b62718.tar.gz yosys-5c5881695dd6570b933eccfd323f8b0e60b62718.tar.bz2 yosys-5c5881695dd6570b933eccfd323f8b0e60b62718.zip |
Merge pull request #1406 from whitequark/connect_rpc
rpc: new frontend
Diffstat (limited to 'tests/rpc/run-test.sh')
-rwxr-xr-x | tests/rpc/run-test.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/rpc/run-test.sh b/tests/rpc/run-test.sh new file mode 100755 index 000000000..44ce7e674 --- /dev/null +++ b/tests/rpc/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 |