aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue72
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue72')
-rw-r--r--testsuite/gna/issue72/fixed.vhdl2
-rwxr-xr-xtestsuite/gna/issue72/testsuite.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/gna/issue72/fixed.vhdl b/testsuite/gna/issue72/fixed.vhdl
index 214c6049a..8b13577ff 100644
--- a/testsuite/gna/issue72/fixed.vhdl
+++ b/testsuite/gna/issue72/fixed.vhdl
@@ -22,7 +22,7 @@ begin -- architecture rtl
process (clk) is
begin -- process
if clk'event and clk = '1' then -- rising clock edge
- if input = one then
+ if input = work.issue_pkg.one then
output <= '1';
else
output <= '0';
diff --git a/testsuite/gna/issue72/testsuite.sh b/testsuite/gna/issue72/testsuite.sh
index 309a6b47d..1119937bb 100755
--- a/testsuite/gna/issue72/testsuite.sh
+++ b/testsuite/gna/issue72/testsuite.sh
@@ -8,9 +8,9 @@ analyze fixed.vhdl
clean
-#GHDL_STD_FLAGS=--std=08
-#analyze issue_pkg.vhdl
-#analyze issue.vhdl
-#clean
+GHDL_STD_FLAGS=--std=08
+analyze issue_pkg.vhdl
+analyze issue.vhdl
+clean
echo "Test successful"