diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-28 23:53:07 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-28 23:53:07 +0100 |
commit | d5b65813b36bf0e179d514ebd872a8b4f5cc79e7 (patch) | |
tree | 1fbdb4ce06b39938f0e6694cd24058485eb82538 /pyGHDL/dom | |
parent | 13fd5ccc6a8b9e59212b5493eb319c6f932eb906 (diff) | |
download | ghdl-d5b65813b36bf0e179d514ebd872a8b4f5cc79e7.tar.gz ghdl-d5b65813b36bf0e179d514ebd872a8b4f5cc79e7.tar.bz2 ghdl-d5b65813b36bf0e179d514ebd872a8b4f5cc79e7.zip |
Allow execution of tests within testsuite.
Diffstat (limited to 'pyGHDL/dom')
-rw-r--r-- | pyGHDL/dom/Misc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyGHDL/dom/Misc.py b/pyGHDL/dom/Misc.py index 82c1f8fac..f8c3d5b73 100644 --- a/pyGHDL/dom/Misc.py +++ b/pyGHDL/dom/Misc.py @@ -32,7 +32,8 @@ class Design(VHDLModel_Design): errorout_console.Install_Handler() libghdl.set_option(b"--std=08") - libghdl.analyze_init() +# if libghdl.analyze_init_status() != 0: +# raise LibGHDLException("Error initializing 'libghdl'.") @export class Library(VHDLModel_Library): |