aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1025/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-23 18:04:28 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-23 18:04:28 +0100
commit185e18dbf9d1c78eafc13c4824c8eab2fd686e12 (patch)
treed0105f8554e003f5631cde293c2e49c9e65ea53d /testsuite/synth/issue1025/testsuite.sh
parentc1e2a5e5cad68c90f47ba0bc05f2285b3ca584d0 (diff)
downloadghdl-185e18dbf9d1c78eafc13c4824c8eab2fd686e12.tar.gz
ghdl-185e18dbf9d1c78eafc13c4824c8eab2fd686e12.tar.bz2
ghdl-185e18dbf9d1c78eafc13c4824c8eab2fd686e12.zip
testsuite/synth: add testcase for #1025
Diffstat (limited to 'testsuite/synth/issue1025/testsuite.sh')
-rwxr-xr-xtestsuite/synth/issue1025/testsuite.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/synth/issue1025/testsuite.sh b/testsuite/synth/issue1025/testsuite.sh
new file mode 100755
index 000000000..9cf76ccac
--- /dev/null
+++ b/testsuite/synth/issue1025/testsuite.sh
@@ -0,0 +1,17 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+GHDL_STD_FLAGS=--std=08
+for t in ent; 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"