aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1082/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1082/testsuite.sh')
-rwxr-xr-xtestsuite/synth/issue1082/testsuite.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/testsuite/synth/issue1082/testsuite.sh b/testsuite/synth/issue1082/testsuite.sh
index 26a25c13f..cca8f9080 100755
--- a/testsuite/synth/issue1082/testsuite.sh
+++ b/testsuite/synth/issue1082/testsuite.sh
@@ -4,6 +4,15 @@
GHDL_STD_FLAGS=--std=08
-synth ent.vhdl -e
+for t in test; do
+ analyze $t.vhdl tb_$t.vhdl
+ elab_simulate tb_$t
+ clean
+
+ synth $t.vhdl -e $t > syn_$t.vhdl
+ analyze syn_$t.vhdl tb_$t.vhdl
+ elab_simulate tb_$t --ieee-asserts=disable-at-0
+ clean
+done
echo "Test successful"