diff options
Diffstat (limited to 'testsuite/gna')
-rw-r--r-- | testsuite/gna/bug0100/procinter.vhdl | 10 | ||||
-rwxr-xr-x | testsuite/gna/bug0100/testsuite.sh | 5 |
2 files changed, 13 insertions, 2 deletions
diff --git a/testsuite/gna/bug0100/procinter.vhdl b/testsuite/gna/bug0100/procinter.vhdl new file mode 100644 index 000000000..2090af217 --- /dev/null +++ b/testsuite/gna/bug0100/procinter.vhdl @@ -0,0 +1,10 @@ +entity procinter is +end; + +architecture arch of procinter is + procedure proc (procedure proc2 (v : natural)) is + begin + null; + end proc; +begin +end arch; diff --git a/testsuite/gna/bug0100/testsuite.sh b/testsuite/gna/bug0100/testsuite.sh index efd122b9c..92b8ad212 100755 --- a/testsuite/gna/bug0100/testsuite.sh +++ b/testsuite/gna/bug0100/testsuite.sh @@ -8,8 +8,9 @@ analyze_failure --force-analysis notype2.vhdl 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 --force-analysis noexpr.vhdl +analyze_failure --force-analysis str.vhdl +analyze_failure --force-analysis procinter.vhdl analyze_failure usrattr.vhdl analyze_failure forloop.vhdl |