From b27832d75291c3288f59d648cfa83b74152adc38 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Fri, 9 Oct 2020 18:42:49 +0200 Subject: testsuite/gna: add a test for previous commit --- testsuite/gna/bug0100/paren.vhdl | 13 +++++++++++++ testsuite/gna/bug0100/testsuite.sh | 1 + 2 files changed, 14 insertions(+) create mode 100644 testsuite/gna/bug0100/paren.vhdl diff --git a/testsuite/gna/bug0100/paren.vhdl b/testsuite/gna/bug0100/paren.vhdl new file mode 100644 index 000000000..ca1c9b7fd --- /dev/null +++ b/testsuite/gna/bug0100/paren.vhdl @@ -0,0 +1,13 @@ +entity paren is +end paren; + +architecture behav of paren is + constant cst : natural := 5; +begin + process + begin + if (cst = 3 then + null; + end if; + end process; +end behav; diff --git a/testsuite/gna/bug0100/testsuite.sh b/testsuite/gna/bug0100/testsuite.sh index db51469d8..786c316ca 100755 --- a/testsuite/gna/bug0100/testsuite.sh +++ b/testsuite/gna/bug0100/testsuite.sh @@ -22,6 +22,7 @@ analyze_failure libparen.vhdl analyze_failure --force-analysis badrng.vhdl analyze_failure --force-analysis attr.vhdl analyze_failure --force-analysis attr2.vhdl +analyze_failure paren.vhdl if analyze_failure --force-analysis notype1.vhdl 2>&1 | grep -q "indexed name"; then : -- cgit v1.2.3