aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/gna/bug069/bug1.vhdl15
-rwxr-xr-xtestsuite/gna/bug069/testsuite.sh9
2 files changed, 24 insertions, 0 deletions
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"