From c4cb0f1b51fcc1b2a1490e5f7bd9344ce8c05bb6 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 2 Jun 2015 20:43:17 +0200 Subject: Ticket 86 testcase. --- testsuite/gna/ticket86/bug.vhdl | 28 ++++++++++++++++++++++++++++ testsuite/gna/ticket86/testsuite.sh | 10 ++++++++++ 2 files changed, 38 insertions(+) create mode 100644 testsuite/gna/ticket86/bug.vhdl create mode 100755 testsuite/gna/ticket86/testsuite.sh (limited to 'testsuite') diff --git a/testsuite/gna/ticket86/bug.vhdl b/testsuite/gna/ticket86/bug.vhdl new file mode 100644 index 0000000..8c879fc --- /dev/null +++ b/testsuite/gna/ticket86/bug.vhdl @@ -0,0 +1,28 @@ +package pkg is + procedure proc; +end package; + +package body pkg is + procedure proc is + type nested_prot_t is protected + procedure proc; + end protected; + type nested_prot_t is protected body + procedure proc is + begin + end procedure; + end protected body; + variable nested_prot : nested_prot_t; + begin + nested_prot.proc; + end procedure; +end package body; + +entity ent is +end; + +architecture behav of ent is +begin + work.pkg.proc; +end; + diff --git a/testsuite/gna/ticket86/testsuite.sh b/testsuite/gna/ticket86/testsuite.sh new file mode 100755 index 0000000..e0096bb --- /dev/null +++ b/testsuite/gna/ticket86/testsuite.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +. ../../testenv.sh + +GHDL_STD_FLAGS=--std=08 +analyze bug.vhdl +elab_simulate ent +clean + +echo "Test successful" -- cgit