From 1120e5730857dc06e1a49d6ad178b1367b383351 Mon Sep 17 00:00:00 2001
From: Tristan Gingold <gingold@adacore.com>
Date: Tue, 22 Dec 2015 20:22:52 +0100
Subject: Add test for --warn-reserved

---
 testsuite/gna/bug030/reserved1.vhdl | 11 +++++++++++
 testsuite/gna/bug030/reserved2.vhdl | 11 +++++++++++
 testsuite/gna/bug030/reserved3.vhdl | 11 +++++++++++
 testsuite/gna/bug030/reserved4.vhdl | 11 +++++++++++
 testsuite/gna/bug030/testsuite.sh   | 13 +++++++++++++
 5 files changed, 57 insertions(+)
 create mode 100644 testsuite/gna/bug030/reserved1.vhdl
 create mode 100644 testsuite/gna/bug030/reserved2.vhdl
 create mode 100644 testsuite/gna/bug030/reserved3.vhdl
 create mode 100644 testsuite/gna/bug030/reserved4.vhdl
 create mode 100755 testsuite/gna/bug030/testsuite.sh

diff --git a/testsuite/gna/bug030/reserved1.vhdl b/testsuite/gna/bug030/reserved1.vhdl
new file mode 100644
index 000000000..b268930a3
--- /dev/null
+++ b/testsuite/gna/bug030/reserved1.vhdl
@@ -0,0 +1,11 @@
+entity reserved1 is
+end reserved1;
+
+architecture behav of reserved1 is
+  signal quantity : bit;
+begin
+  process
+  begin
+    wait;
+  end process;
+end behav;
diff --git a/testsuite/gna/bug030/reserved2.vhdl b/testsuite/gna/bug030/reserved2.vhdl
new file mode 100644
index 000000000..ba6230665
--- /dev/null
+++ b/testsuite/gna/bug030/reserved2.vhdl
@@ -0,0 +1,11 @@
+entity reserved2 is
+end;
+
+architecture behav of reserved2 is
+  signal context : bit;
+begin
+  process
+  begin
+    wait;
+  end process;
+end behav;
diff --git a/testsuite/gna/bug030/reserved3.vhdl b/testsuite/gna/bug030/reserved3.vhdl
new file mode 100644
index 000000000..441e8cffc
--- /dev/null
+++ b/testsuite/gna/bug030/reserved3.vhdl
@@ -0,0 +1,11 @@
+entity reserved3 is
+end;
+
+architecture behav of reserved3 is
+  signal protected : bit;
+begin
+  process
+  begin
+    wait;
+  end process;
+end behav;
diff --git a/testsuite/gna/bug030/reserved4.vhdl b/testsuite/gna/bug030/reserved4.vhdl
new file mode 100644
index 000000000..922c5e4e1
--- /dev/null
+++ b/testsuite/gna/bug030/reserved4.vhdl
@@ -0,0 +1,11 @@
+entity reserved4 is
+end;
+
+architecture behav of reserved4 is
+  signal xnor : bit;
+begin
+  process
+  begin
+    wait;
+  end process;
+end behav;
diff --git a/testsuite/gna/bug030/testsuite.sh b/testsuite/gna/bug030/testsuite.sh
new file mode 100755
index 000000000..18d831424
--- /dev/null
+++ b/testsuite/gna/bug030/testsuite.sh
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+analyze --warn-reserved reserved1.vhdl
+analyze --warn-reserved reserved2.vhdl
+analyze --warn-reserved reserved3.vhdl
+analyze --warn-reserved --std=87 reserved4.vhdl
+
+clean
+clean --std=87
+
+echo "Test successful"
-- 
cgit v1.2.3