diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-07-03 16:31:22 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-07-03 16:34:21 +0200 |
commit | 53b1d9101cbff266c4c34c72dd77970bba0e9718 (patch) | |
tree | 227295f6be2f4c9e00f453218cea1b89f8c69add | |
parent | 84c47a11b41af9f9c54ae8b78f6fc0bbe087c3c0 (diff) | |
download | ghdl-53b1d9101cbff266c4c34c72dd77970bba0e9718.tar.gz ghdl-53b1d9101cbff266c4c34c72dd77970bba0e9718.tar.bz2 ghdl-53b1d9101cbff266c4c34c72dd77970bba0e9718.zip |
bug011: also tests vcd.
-rwxr-xr-x | testsuite/gna/bug011/testsuite.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testsuite/gna/bug011/testsuite.sh b/testsuite/gna/bug011/testsuite.sh index 0ad0ee761..b0fa087be 100755 --- a/testsuite/gna/bug011/testsuite.sh +++ b/testsuite/gna/bug011/testsuite.sh @@ -7,8 +7,11 @@ elab phonybench if ghdl_has_feature phonybench fst; then elab_simulate phonybench --stop-time=1sec --fst=pb.fst fi +if ghdl_has_feature phonybench vcd; then + elab_simulate phonybench --stop-time=1sec --vcd=pb.vcd +fi -rm -f pb.fst pb.ghw +rm -f pb.fst pb.vcd clean |