aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-01-02 09:39:38 +0100
committerTristan Gingold <tgingold@free.fr>2020-01-02 09:39:38 +0100
commit913d4aa9636e3f06b612a9591faada1fe030b75c (patch)
treeffc05675cb768b05b285dabd176df7183f3e10b1
parentb6822eff7218c6a58c3d87e8cfa4985bc3166f89 (diff)
downloadghdl-913d4aa9636e3f06b612a9591faada1fe030b75c.tar.gz
ghdl-913d4aa9636e3f06b612a9591faada1fe030b75c.tar.bz2
ghdl-913d4aa9636e3f06b612a9591faada1fe030b75c.zip
testsuite: complete test for #1063
-rw-r--r--testsuite/gna/issue1063/matching.vhdl8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuite/gna/issue1063/matching.vhdl b/testsuite/gna/issue1063/matching.vhdl
index a9484c514..3bd4588f2 100644
--- a/testsuite/gna/issue1063/matching.vhdl
+++ b/testsuite/gna/issue1063/matching.vhdl
@@ -5,7 +5,11 @@ entity matching is
end matching;
architecture behav of matching is
- constant ceq : std_logic := '1' ?= '1';
+ constant ceq11 : std_logic := '1' ?= '1';
+ constant ceq1h : std_logic := '1' ?= 'H';
+ constant ceq1w : std_logic := '1' ?= 'W';
begin
- assert ceq = '1';
+ assert ceq11 = '1';
+ assert ceq1h = '1';
+ assert ceq1w = 'X';
end behav;