From ba427403103b52ad0c95cae87c402af67be43fdf Mon Sep 17 00:00:00 2001
From: "benjamin.franksen" <benjamin.franksen@helmholtz-berlin.de>
Date: Sun, 13 Oct 2013 12:29:17 +0000
Subject: [PATCH] test: added funcdefShadowGlobal.st

This tests that a global SNL variable is (correctly) shadowed by a
function parameter with the same name, even in re-entrant mode.
---
 test/compiler/funcdefShadowGlobal.st | 19 +++++++++++++++++++
 test/compiler/snc_test.plt           |  1 +
 2 files changed, 20 insertions(+)
 create mode 100644 test/compiler/funcdefShadowGlobal.st

diff --git a/test/compiler/funcdefShadowGlobal.st b/test/compiler/funcdefShadowGlobal.st
new file mode 100644
index 00000000..cde22018
--- /dev/null
+++ b/test/compiler/funcdefShadowGlobal.st
@@ -0,0 +1,19 @@
+program funcdefShadowGlobalTest
+
+option +r;
+
+int x;
+assign x;
+
+void pvSetX(int x)
+{
+    pvPut(x);
+}
+
+ss simple {
+    state simple {
+        when () {
+            pvSetX(1.0);
+        } exit
+    }
+}
diff --git a/test/compiler/snc_test.plt b/test/compiler/snc_test.plt
index 7335cc01..e06f7dd3 100644
--- a/test/compiler/snc_test.plt
+++ b/test/compiler/snc_test.plt
@@ -29,6 +29,7 @@ my $error = {
   efGlobal => 3,
   efNoInit => 1,
   efPointer => 1,
+  funcdefShadowGlobal => 1,
   foreignGlobal => 3,
   foreignNoInit => 1,
   misplacedExit => 1,
-- 
GitLab