aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1117/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-02-02 19:38:39 +0100
committerTristan Gingold <tgingold@free.fr>2020-02-02 19:38:39 +0100
commit55faf476ebc08240e9052d184221b57092e68db9 (patch)
tree0ca5fbfd27894127e0d5a5e9caffdfd3ccfd1dd8 /testsuite/synth/issue1117/testsuite.sh
parent592e6beefd3f15f86dbc99102d6f71039ff63591 (diff)
downloadghdl-55faf476ebc08240e9052d184221b57092e68db9.tar.gz
ghdl-55faf476ebc08240e9052d184221b57092e68db9.tar.bz2
ghdl-55faf476ebc08240e9052d184221b57092e68db9.zip
testsuite/synth: add test for #1117
Diffstat (limited to 'testsuite/synth/issue1117/testsuite.sh')
-rwxr-xr-xtestsuite/synth/issue1117/testsuite.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue1117/testsuite.sh b/testsuite/synth/issue1117/testsuite.sh
new file mode 100755
index 000000000..7b5a2cb7c
--- /dev/null
+++ b/testsuite/synth/issue1117/testsuite.sh
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+for t in ent; do
+ analyze $t.vhdl tb_$t.vhdl
+ elab_simulate tb_$t
+ clean
+
+ synth '-gg=x"ff_ff_00_01"' $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"