diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-02-01 11:22:08 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-02-01 11:22:08 +0100 |
commit | 1fe0dce8f25255bcf9a3a3cfe317f763f1e410ce (patch) | |
tree | 4c8b724922c40afe9492c559d7ba93e2d68b6c81 /testsuite/synth/issue1122/testsuite.sh | |
parent | 579d59ed60396da77f015da6e86fce80c53dbeda (diff) | |
download | ghdl-1fe0dce8f25255bcf9a3a3cfe317f763f1e410ce.tar.gz ghdl-1fe0dce8f25255bcf9a3a3cfe317f763f1e410ce.tar.bz2 ghdl-1fe0dce8f25255bcf9a3a3cfe317f763f1e410ce.zip |
testsuite/synth: add tests for #1122
Diffstat (limited to 'testsuite/synth/issue1122/testsuite.sh')
-rwxr-xr-x | testsuite/synth/issue1122/testsuite.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/synth/issue1122/testsuite.sh b/testsuite/synth/issue1122/testsuite.sh new file mode 100755 index 000000000..ad74b19cc --- /dev/null +++ b/testsuite/synth/issue1122/testsuite.sh @@ -0,0 +1,15 @@ +#! /bin/sh + +. ../../testenv.sh + +synth mult.vhd mult_pkg.vhd -e > syn_mult.vhdl +analyze mult_pkg.vhd syn_mult.vhdl +clean + +for t in repro repro2; do + synth $t.vhdl -e $t > syn_$t.vhdl + analyze syn_$t.vhdl + clean +done + +echo "Test successful" |