aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-25 18:45:30 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-25 18:45:30 +0100
commit2f8ca2c8e452c3321386a6be04ae24d5369fe148 (patch)
treefe1afd57a1b912077fad670d43ae920ae954f926 /testsuite
parent7051d55b27369c12b7733d9b660a3085736fe086 (diff)
downloadghdl-2f8ca2c8e452c3321386a6be04ae24d5369fe148.tar.gz
ghdl-2f8ca2c8e452c3321386a6be04ae24d5369fe148.tar.bz2
ghdl-2f8ca2c8e452c3321386a6be04ae24d5369fe148.zip
Rewrite harness of a test.
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/synth/issue1004/testsuite.sh16
1 files changed, 2 insertions, 14 deletions
diff --git a/testsuite/synth/issue1004/testsuite.sh b/testsuite/synth/issue1004/testsuite.sh
index fa3686042..52b31fbaf 100755
--- a/testsuite/synth/issue1004/testsuite.sh
+++ b/testsuite/synth/issue1004/testsuite.sh
@@ -3,21 +3,9 @@
. ../../testenv.sh
GHDL_STD_FLAGS=--std=08
-for t in test; do
- synth $t.vhdl -e $t > syn_$t.vhdl
- analyze syn_$t.vhdl
-done
+synth_analyze test
-for t in test2; 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
+synth_tb test2
clean