From 2b10b1c53e0e54c286ddd951fc2c169789ac4b37 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sat, 25 Mar 2017 09:49:59 +0100 Subject: Add testcase for previous commit. --- testsuite/gna/bug069/bug1.vhdl | 15 +++++++++++++++ testsuite/gna/bug069/testsuite.sh | 9 +++++++++ 2 files changed, 24 insertions(+) create mode 100644 testsuite/gna/bug069/bug1.vhdl create mode 100755 testsuite/gna/bug069/testsuite.sh (limited to 'testsuite') diff --git a/testsuite/gna/bug069/bug1.vhdl b/testsuite/gna/bug069/bug1.vhdl new file mode 100644 index 000000000..72dea1a0a --- /dev/null +++ b/testsuite/gna/bug069/bug1.vhdl @@ -0,0 +1,15 @@ +library IEEE; +use IEEE.std_logic_1164.all; + +entity bug1 is +end entity bug1; + +architecture behavioural of bug1 is + + signal outEn : std_logic; + +begin + + outEn <= 1; + +end architecture behavioural; diff --git a/testsuite/gna/bug069/testsuite.sh b/testsuite/gna/bug069/testsuite.sh new file mode 100755 index 000000000..89f3fb363 --- /dev/null +++ b/testsuite/gna/bug069/testsuite.sh @@ -0,0 +1,9 @@ +#! /bin/sh + +. ../../testenv.sh + +analyze_failure bug1.vhdl + +clean + +echo "Test successful" -- cgit v1.2.3