From d359d6deb55e5c51707c86263b090fabbc5c41b2 Mon Sep 17 00:00:00 2001 From: 1138-4EB <1138-4EB@users.noreply.github.com> Date: Fri, 16 Aug 2019 22:07:46 +0200 Subject: 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 --- testsuite/issue11/testsuite.sh | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) (limited to 'testsuite/issue11') diff --git a/testsuite/issue11/testsuite.sh b/testsuite/issue11/testsuite.sh index d0f9360..e281ee9 100755 --- a/testsuite/issue11/testsuite.sh +++ b/testsuite/issue11/testsuite.sh @@ -2,19 +2,8 @@ . ../testenv.sh -analyze test_or.vhdl -synth test_or - -analyze test_xor.vhdl -synth test_xor - -analyze test_nor.vhdl -synth test_nor - -analyze test_nand.vhdl -synth test_nand - -analyze test_xnor.vhdl -synth test_xnor +for f in or xor nor nand xnor; do + synth "test_${f}.vhdl -e test_${f}" +done clean -- cgit v1.2.3