diff options
Diffstat (limited to 'testsuite/gna')
-rw-r--r-- | testsuite/gna/bug0106/repro.vhdl | 9 | ||||
-rwxr-xr-x | testsuite/gna/bug0106/testsuite.sh | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/gna/bug0106/repro.vhdl b/testsuite/gna/bug0106/repro.vhdl new file mode 100644 index 000000000..49dfaadfb --- /dev/null +++ b/testsuite/gna/bug0106/repro.vhdl @@ -0,0 +1,9 @@ +entity repro is +end repro; + +architecture behav of repro is + signal v : natural; + constant c : integer := 5; +begin + v <= natural (c)'a; +end behav; diff --git a/testsuite/gna/bug0106/testsuite.sh b/testsuite/gna/bug0106/testsuite.sh new file mode 100755 index 000000000..5defdcf1e --- /dev/null +++ b/testsuite/gna/bug0106/testsuite.sh @@ -0,0 +1,9 @@ +#! /bin/sh + +. ../../testenv.sh + +analyze_failure repro.vhdl + +clean + +echo "Test successful" |