summaryrefslogtreecommitdiff
path: root/testsuite/gna/sr3028
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/sr3028')
-rwxr-xr-xtestsuite/gna/sr3028/testsuite.sh14
-rw-r--r--testsuite/gna/sr3028/top.vhdl7
-rw-r--r--testsuite/gna/sr3028/vc.vhdl4
3 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/gna/sr3028/testsuite.sh b/testsuite/gna/sr3028/testsuite.sh
new file mode 100755
index 0000000..e63a031
--- /dev/null
+++ b/testsuite/gna/sr3028/testsuite.sh
@@ -0,0 +1,14 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+echo "Skipped !!!!"
+exit 0
+
+analyze vc.vhdl
+analyze top.vhdl
+elab_simulate_failure top
+
+clean
+
+echo "Test successful"
diff --git a/testsuite/gna/sr3028/top.vhdl b/testsuite/gna/sr3028/top.vhdl
new file mode 100644
index 0000000..e194a63
--- /dev/null
+++ b/testsuite/gna/sr3028/top.vhdl
@@ -0,0 +1,7 @@
+entity top is
+end top;
+
+use work.vc_fakeram_pkg;
+architecture behav of top is
+begin
+end behav;
diff --git a/testsuite/gna/sr3028/vc.vhdl b/testsuite/gna/sr3028/vc.vhdl
new file mode 100644
index 0000000..b140f82
--- /dev/null
+++ b/testsuite/gna/sr3028/vc.vhdl
@@ -0,0 +1,4 @@
+package vc_fakeram_pkg is
+ type memory_type is array (0 to 4294967296) of integer;
+ shared variable memory:memory_type;
+end vc_fakeram_pkg;