aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2020-12-29 09:56:33 +0100
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2020-12-29 09:56:33 +0100
commit98054aaf2a21d3fab0fbaff4d347048d0d507413 (patch)
tree1ea15c5adb254b3735d00ab2b399ef61573fd72d /testsuite
parent59d35ab49e7ed598387f3a3c5a53138096893b3f (diff)
downloadghdl-98054aaf2a21d3fab0fbaff4d347048d0d507413.tar.gz
ghdl-98054aaf2a21d3fab0fbaff4d347048d0d507413.tar.bz2
ghdl-98054aaf2a21d3fab0fbaff4d347048d0d507413.zip
Activated 'analyze_init_status' in Python code.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/pyunit/libghdl/Initialize.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/pyunit/libghdl/Initialize.py b/testsuite/pyunit/libghdl/Initialize.py
index 7ad00a995..0a46fe8b4 100644
--- a/testsuite/pyunit/libghdl/Initialize.py
+++ b/testsuite/pyunit/libghdl/Initialize.py
@@ -31,8 +31,8 @@ class Instantiate(TestCase):
libghdl.set_option(b"--std=08")
# Finish initialization. This will load the standard package.
-# if libghdl.analyze_init_status() != 0:
-# self.fail("libghdl initialization error")
+ if libghdl.analyze_init_status() != 0:
+ self.fail("libghdl initialization error")
# Load the file
file_id = name_table.Get_Identifier(str(self._filename).encode("utf_8"))