diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-09-17 05:44:19 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-09-17 06:06:31 +0200 |
commit | 153fdb2a01ebc0e38bfcdb2be1f00524aba13ea7 (patch) | |
tree | 00cee47b00a8a7295da3fc3d8e512530b2bed8d9 | |
parent | e9ee873a6277d6ae203923128c5ebeda7d558a3d (diff) | |
download | ghdl-153fdb2a01ebc0e38bfcdb2be1f00524aba13ea7.tar.gz ghdl-153fdb2a01ebc0e38bfcdb2be1f00524aba13ea7.tar.bz2 ghdl-153fdb2a01ebc0e38bfcdb2be1f00524aba13ea7.zip |
testsuite/gna: add a test and close #757
-rw-r--r-- | testsuite/gna/issue857/test.vhdl | 11 | ||||
-rwxr-xr-x | testsuite/gna/issue857/testsuite.sh | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/gna/issue857/test.vhdl b/testsuite/gna/issue857/test.vhdl new file mode 100644 index 000000000..30e99c85e --- /dev/null +++ b/testsuite/gna/issue857/test.vhdl @@ -0,0 +1,11 @@ +entity test is +end entity; + +architecture tb of test is +begin + process + begin + report to_string(3.0); + wait; + end process; +end architecture; diff --git a/testsuite/gna/issue857/testsuite.sh b/testsuite/gna/issue857/testsuite.sh new file mode 100755 index 000000000..1d84c0f57 --- /dev/null +++ b/testsuite/gna/issue857/testsuite.sh @@ -0,0 +1,11 @@ +#! /bin/sh + +. ../../testenv.sh + +export GHDL_STD_FLAGS=--std=08 +analyze test.vhdl +elab_simulate test + +clean + +echo "Test successful" |