aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/dom/Sanity.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/pyunit/dom/Sanity.py')
-rw-r--r--testsuite/pyunit/dom/Sanity.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuite/pyunit/dom/Sanity.py b/testsuite/pyunit/dom/Sanity.py
index adf838646..cc321acc7 100644
--- a/testsuite/pyunit/dom/Sanity.py
+++ b/testsuite/pyunit/dom/Sanity.py
@@ -53,5 +53,9 @@ design = Design()
def test_AllVHDLSources(file):
check_call([sys_executable, _GHDL_ROOT / "pyGHDL/cli/dom.py", "pretty", "-f", file], stderr=STDOUT)
-# document = Document(Path(file))
-# design.Documents.append(document)
+ # try:
+ # lib = design.GetLibrary("sanity")
+ # document = Document(Path(file))
+ # design.AddDocument(document, lib)
+ # except DOMException as ex:
+ # print(ex)