diff options
-rw-r--r-- | testsuite/gna/bug0100/str.vhdl | 12 | ||||
-rwxr-xr-x | testsuite/gna/bug0100/testsuite.sh | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/str.vhdl b/testsuite/gna/bug0100/str.vhdl new file mode 100644 index 000000000..b190536d8 --- /dev/null +++ b/testsuite/gna/bug0100/str.vhdl @@ -0,0 +1,12 @@ +entity str is +end str; + +architecture behav of str is +begin + process + begin + null; + "abc"; + null; + end process; +end behav; diff --git a/testsuite/gna/bug0100/testsuite.sh b/testsuite/gna/bug0100/testsuite.sh index 54ca03736..efd122b9c 100755 --- a/testsuite/gna/bug0100/testsuite.sh +++ b/testsuite/gna/bug0100/testsuite.sh @@ -9,6 +9,7 @@ analyze_failure --force-analysis nochoice1.vhdl analyze_failure --force-analysis nochoice2.vhdl analyze_failure --force-analysis choicelen.vhdl analyze_failure --force-analysis noexpr.vhdl +analyze_failure --force-analysis str.vhdl analyze_failure usrattr.vhdl analyze_failure forloop.vhdl |