diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-12-24 18:01:07 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-12-24 18:01:07 +0100 |
commit | 0c8d0c455f12bf59a1d0b2c1eefddd1a319efe00 (patch) | |
tree | 3b5635767bb6139542a954e1c17728908141c219 /testsuite/synth/issue1054/testsuite.sh | |
parent | e0a1519e89fbc896517ced756719679e223c5401 (diff) | |
download | ghdl-0c8d0c455f12bf59a1d0b2c1eefddd1a319efe00.tar.gz ghdl-0c8d0c455f12bf59a1d0b2c1eefddd1a319efe00.tar.bz2 ghdl-0c8d0c455f12bf59a1d0b2c1eefddd1a319efe00.zip |
testsuite/synth: add testcase for #1054
Diffstat (limited to 'testsuite/synth/issue1054/testsuite.sh')
-rwxr-xr-x | testsuite/synth/issue1054/testsuite.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue1054/testsuite.sh b/testsuite/synth/issue1054/testsuite.sh new file mode 100755 index 000000000..564b47fc4 --- /dev/null +++ b/testsuite/synth/issue1054/testsuite.sh @@ -0,0 +1,16 @@ +#! /bin/sh + +. ../../testenv.sh + +for t in simple01; 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" |