diff options
Diffstat (limited to 'testsuite/synth/issue1117')
-rwxr-xr-x | testsuite/synth/issue1117/testsuite.sh | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/testsuite/synth/issue1117/testsuite.sh b/testsuite/synth/issue1117/testsuite.sh index 7b5a2cb7c..ad9d5418c 100755 --- a/testsuite/synth/issue1117/testsuite.sh +++ b/testsuite/synth/issue1117/testsuite.sh @@ -2,15 +2,13 @@ . ../../testenv.sh -for t in ent; do - analyze $t.vhdl tb_$t.vhdl - elab_simulate tb_$t - clean - - synth '-gg=x"ff_ff_00_01"' $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 +analyze ent.vhdl tb_ent.vhdl +elab_simulate tb_ent +clean + +synth '-gg=x"ff_ff_00_01"' ent.vhdl -e ent > syn_ent.vhdl +analyze syn_ent.vhdl tb_ent.vhdl +elab_simulate tb_ent --ieee-asserts=disable-at-0 +clean echo "Test successful" |