aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1046/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-29 19:09:13 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-29 19:09:13 +0100
commit75d82a9f92a1845ae933d2599cddf92f938446af (patch)
tree5a5f9c2c1b3b0a5cb54dee204562aa19d5603050 /testsuite/synth/issue1046/testsuite.sh
parent09de5ec9c9e8c66b2690c53b4e89ce81c5d447e5 (diff)
downloadghdl-75d82a9f92a1845ae933d2599cddf92f938446af.tar.gz
ghdl-75d82a9f92a1845ae933d2599cddf92f938446af.tar.bz2
ghdl-75d82a9f92a1845ae933d2599cddf92f938446af.zip
testsuite: add case for #1046
Diffstat (limited to 'testsuite/synth/issue1046/testsuite.sh')
-rwxr-xr-xtestsuite/synth/issue1046/testsuite.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue1046/testsuite.sh b/testsuite/synth/issue1046/testsuite.sh
new file mode 100755
index 000000000..0ad6d0e90
--- /dev/null
+++ b/testsuite/synth/issue1046/testsuite.sh
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+for t in concat01; 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"