diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-27 13:56:32 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-27 13:56:32 +0200 |
commit | cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d (patch) | |
tree | 27e89ccd0ba51cab2cfb8a690c3a607216ee9530 /testsuite/synth/issue40/testsuite.sh | |
parent | 4870e051898d752407da802d4297d1f83bfbe433 (diff) | |
download | ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.tar.gz ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.tar.bz2 ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.zip |
testsuite/synth: testcase for conditional signal assignment.
Diffstat (limited to 'testsuite/synth/issue40/testsuite.sh')
-rwxr-xr-x | testsuite/synth/issue40/testsuite.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/synth/issue40/testsuite.sh b/testsuite/synth/issue40/testsuite.sh new file mode 100755 index 000000000..54d4ea0ed --- /dev/null +++ b/testsuite/synth/issue40/testsuite.sh @@ -0,0 +1,18 @@ +#! /bin/sh + +. ../../testenv.sh + +GHDL_STD_FLAGS=--std=08 + +for t in testcase; 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" |