aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug05/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-02-09 20:27:51 +0100
committerTristan Gingold <tgingold@free.fr>2016-02-09 20:27:51 +0100
commit45dba464bc2f69145753e4c9c9b1dde0868ec878 (patch)
tree84ec4ab7344a59c26a175e299d57f594373068d4 /testsuite/gna/bug05/testsuite.sh
parentae3865c0cbf1f71f7b8576031a37ac855060677b (diff)
downloadghdl-45dba464bc2f69145753e4c9c9b1dde0868ec878.tar.gz
ghdl-45dba464bc2f69145753e4c9c9b1dde0868ec878.tar.bz2
ghdl-45dba464bc2f69145753e4c9c9b1dde0868ec878.zip
testsuite: check feature before testing it.
Diffstat (limited to 'testsuite/gna/bug05/testsuite.sh')
-rwxr-xr-xtestsuite/gna/bug05/testsuite.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/gna/bug05/testsuite.sh b/testsuite/gna/bug05/testsuite.sh
index 5343c9343..7f3c77360 100755
--- a/testsuite/gna/bug05/testsuite.sh
+++ b/testsuite/gna/bug05/testsuite.sh
@@ -7,7 +7,9 @@ elab tb
if ghdl_has_feature tb fst; then
simulate tb --fst=tb.fst
fi
-simulate tb --vcd=tb.vcd
+if ghdl_has_feature tb vcd; then
+ simulate tb --vcd=tb.vcd
+fi
clean
rm -f tb.fst tb.vcd