aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue34/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-08-17 22:01:25 +0200
committerTristan Gingold <tgingold@free.fr>2019-08-17 22:01:25 +0200
commite51f0ae6ee0a6c94b1a92b36dab7980d46b99668 (patch)
treedb7e87da512315aaa47da48300700506bc5dd8c6 /testsuite/synth/issue34/testsuite.sh
parentf475ff49f316c373eab6579bb058508927534db9 (diff)
downloadghdl-e51f0ae6ee0a6c94b1a92b36dab7980d46b99668.tar.gz
ghdl-e51f0ae6ee0a6c94b1a92b36dab7980d46b99668.tar.bz2
ghdl-e51f0ae6ee0a6c94b1a92b36dab7980d46b99668.zip
synth: add testcase for issue 34
Diffstat (limited to 'testsuite/synth/issue34/testsuite.sh')
-rwxr-xr-xtestsuite/synth/issue34/testsuite.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue34/testsuite.sh b/testsuite/synth/issue34/testsuite.sh
new file mode 100755
index 000000000..82088c6d8
--- /dev/null
+++ b/testsuite/synth/issue34/testsuite.sh
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+for t in repro_slv repro_uns repro_sgn repro_nat repro_rng1; 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
+ clean
+done
+
+echo "Test successful"