aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/dff03/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-10-14 20:54:09 +0200
committerTristan Gingold <tgingold@free.fr>2019-10-14 20:54:09 +0200
commit987b58addadbef067a3dca4e3c687f098e0b265a (patch)
treed121bbccc9921b336431ebeca5938b7cac5514a2 /testsuite/synth/dff03/testsuite.sh
parent02dc85ef9b2179ffe15d0c8172e44786a2216d39 (diff)
downloadghdl-987b58addadbef067a3dca4e3c687f098e0b265a.tar.gz
ghdl-987b58addadbef067a3dca4e3c687f098e0b265a.tar.bz2
ghdl-987b58addadbef067a3dca4e3c687f098e0b265a.zip
testsuite/synth: add testcases for previous commit.
Diffstat (limited to 'testsuite/synth/dff03/testsuite.sh')
-rwxr-xr-xtestsuite/synth/dff03/testsuite.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/dff03/testsuite.sh b/testsuite/synth/dff03/testsuite.sh
new file mode 100755
index 000000000..f0c94f7f9
--- /dev/null
+++ b/testsuite/synth/dff03/testsuite.sh
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+for t in dff01 dff02 dff03 dff04 dff05 dff06; 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"