diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/gna/bug24324/tb_thingy1.vhdl | 21 | ||||
-rwxr-xr-x | testsuite/gna/bug24324/testsuite.sh | 9 |
2 files changed, 30 insertions, 0 deletions
diff --git a/testsuite/gna/bug24324/tb_thingy1.vhdl b/testsuite/gna/bug24324/tb_thingy1.vhdl new file mode 100644 index 0000000..1a63a9e --- /dev/null +++ b/testsuite/gna/bug24324/tb_thingy1.vhdl @@ -0,0 +1,21 @@ +entity tb_thingy is +end tb_thingy; + +architecture tb of tb_thingy is + component thingy is + port ( + x_x : in bit; + y_y : out bit + ); + end component; + signal stimuli : bit; + signal response : bit; +begin + + dut : thingy + port map ( + x-x => stimuli, -- <== spelling error + y_y => response + ); + +end tb; diff --git a/testsuite/gna/bug24324/testsuite.sh b/testsuite/gna/bug24324/testsuite.sh new file mode 100755 index 0000000..689a4f0 --- /dev/null +++ b/testsuite/gna/bug24324/testsuite.sh @@ -0,0 +1,9 @@ +#! /bin/sh + +. ../../testenv.sh + +analyze_failure tb_thingy1.vhdl + +clean + +echo "Test successful" |