aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1005/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-07 06:18:47 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-07 06:18:47 +0100
commit20d538b26feca9b40476181b121ee64c7aabbf5a (patch)
tree6f32456aad816ca0f58b77a81c50d5a865fa815b /testsuite/synth/issue1005/testsuite.sh
parent5d644d6043dd16eb5619c169fa9145d47fdc5407 (diff)
downloadghdl-20d538b26feca9b40476181b121ee64c7aabbf5a.tar.gz
ghdl-20d538b26feca9b40476181b121ee64c7aabbf5a.tar.bz2
ghdl-20d538b26feca9b40476181b121ee64c7aabbf5a.zip
testsuite/synth: add testcase for or short-circuit. #1005
Diffstat (limited to 'testsuite/synth/issue1005/testsuite.sh')
-rwxr-xr-xtestsuite/synth/issue1005/testsuite.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/synth/issue1005/testsuite.sh b/testsuite/synth/issue1005/testsuite.sh
index 5643f943a..4dffa0455 100755
--- a/testsuite/synth/issue1005/testsuite.sh
+++ b/testsuite/synth/issue1005/testsuite.sh
@@ -3,9 +3,10 @@
. ../../testenv.sh
GHDL_STD_FLAGS=--std=08
-t=test
-synth $t.vhdl -e $t > syn_$t.vhdl
-analyze syn_$t.vhdl
+for t in test test2; do
+ synth $t.vhdl -e $t > syn_$t.vhdl
+ analyze syn_$t.vhdl
+done
clean