diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-09-08 16:30:32 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-09-11 06:37:27 +0200 |
commit | 43f70120eb51d9d5ff8e429e0128d12b8c302fe2 (patch) | |
tree | 3c628a7f07da168af431861af13ff092b29b1d66 /testsuite/synth/slice01/testsuite.sh | |
parent | feb383147b2512e42c2929c1ced4beac848f8804 (diff) | |
download | ghdl-43f70120eb51d9d5ff8e429e0128d12b8c302fe2.tar.gz ghdl-43f70120eb51d9d5ff8e429e0128d12b8c302fe2.tar.bz2 ghdl-43f70120eb51d9d5ff8e429e0128d12b8c302fe2.zip |
testsuite/synth: add a test for slices.
Diffstat (limited to 'testsuite/synth/slice01/testsuite.sh')
-rwxr-xr-x | testsuite/synth/slice01/testsuite.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/synth/slice01/testsuite.sh b/testsuite/synth/slice01/testsuite.sh index 1729c688d..0220769ab 100755 --- a/testsuite/synth/slice01/testsuite.sh +++ b/testsuite/synth/slice01/testsuite.sh @@ -2,14 +2,14 @@ . ../../testenv.sh -for t in slice01; do +for t in slice01 slice02; 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 + elab_simulate tb_$t --ieee-asserts=disable-at-0 clean done |