From 913d4aa9636e3f06b612a9591faada1fe030b75c Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Thu, 2 Jan 2020 09:39:38 +0100 Subject: testsuite: complete test for #1063 --- testsuite/gna/issue1063/matching.vhdl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'testsuite') 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; -- cgit v1.2.3