diff options
author | 1138-4EB <1138-4EB@users.noreply.github.com> | 2019-08-16 22:07:46 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2019-08-16 22:07:46 +0200 |
commit | d359d6deb55e5c51707c86263b090fabbc5c41b2 (patch) | |
tree | e916cb1f11ec2687bfedbd6ad02f08c3a5b068db /testsuite/issue4 | |
parent | c924837dd7f9164aabb37983fb036ee34a9f1e40 (diff) | |
download | ghdl-yosys-plugin-d359d6deb55e5c51707c86263b090fabbc5c41b2.tar.gz ghdl-yosys-plugin-d359d6deb55e5c51707c86263b090fabbc5c41b2.tar.bz2 ghdl-yosys-plugin-d359d6deb55e5c51707c86263b090fabbc5c41b2.zip |
Run testsuite in Travis CI with docker images (#31)
* makefile: use '--build' shortcut to build ghdl.so
* move: rename subdir 'ghdl' to 'src'
* travis: add travis config file, build script and utils script
* testsuite: do not call ghdl explicitly
* readme: update
Diffstat (limited to 'testsuite/issue4')
-rw-r--r-- | testsuite/issue4/no_vector.vhdl (renamed from testsuite/issue4/novector.vhdl) | 0 | ||||
-rwxr-xr-x | testsuite/issue4/testsuite.sh | 11 |
2 files changed, 3 insertions, 8 deletions
diff --git a/testsuite/issue4/novector.vhdl b/testsuite/issue4/no_vector.vhdl index a3c2c46..a3c2c46 100644 --- a/testsuite/issue4/novector.vhdl +++ b/testsuite/issue4/no_vector.vhdl diff --git a/testsuite/issue4/testsuite.sh b/testsuite/issue4/testsuite.sh index 9eaedbc..49ead4d 100755 --- a/testsuite/issue4/testsuite.sh +++ b/testsuite/issue4/testsuite.sh @@ -2,13 +2,8 @@ . ../testenv.sh -analyze novector.vhdl -synth no_vector - -analyze counter8.vhdl -synth counter8 - -analyze vector.vhdl -synth vector +for f in no_vector counter8 vector; do + synth "${f}.vhdl -e ${f}" +done clean |