diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-29 06:57:04 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-29 06:57:04 +0200 |
commit | 70bca998891387e66b3cf522b3d66b8e873de08d (patch) | |
tree | 553d22efbe8dd03ac7b7b2067ab71edb80c8b6f9 /testsuite/synth/issue39/testsuite.sh | |
parent | 698c668481e9ca77234317bca7047efd8210c24c (diff) | |
download | ghdl-70bca998891387e66b3cf522b3d66b8e873de08d.tar.gz ghdl-70bca998891387e66b3cf522b3d66b8e873de08d.tar.bz2 ghdl-70bca998891387e66b3cf522b3d66b8e873de08d.zip |
testsuite/synth: add testcase for records. Temporary disable stmt01
Diffstat (limited to 'testsuite/synth/issue39/testsuite.sh')
-rwxr-xr-x | testsuite/synth/issue39/testsuite.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue39/testsuite.sh b/testsuite/synth/issue39/testsuite.sh new file mode 100755 index 000000000..b12533cc8 --- /dev/null +++ b/testsuite/synth/issue39/testsuite.sh @@ -0,0 +1,16 @@ +#! /bin/sh + +. ../../testenv.sh + +for t in rec2; 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" |