aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-06-30 20:45:03 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-07-01 06:39:47 +0200
commitc75693ff6f5c7b05d49ce916e34aaba61b688e31 (patch)
treeac5eca19c8fe114be81d3f2cb6e47c18a462865a /testsuite/pyunit
parent301dea333ec3e28e95a43b1a4af569ebbedd6ab9 (diff)
downloadghdl-c75693ff6f5c7b05d49ce916e34aaba61b688e31.tar.gz
ghdl-c75693ff6f5c7b05d49ce916e34aaba61b688e31.tar.bz2
ghdl-c75693ff6f5c7b05d49ce916e34aaba61b688e31.zip
New command line interface for DOM.
Diffstat (limited to 'testsuite/pyunit')
-rw-r--r--testsuite/pyunit/dom/Sanity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/pyunit/dom/Sanity.py b/testsuite/pyunit/dom/Sanity.py
index 566a0265b..adf838646 100644
--- a/testsuite/pyunit/dom/Sanity.py
+++ b/testsuite/pyunit/dom/Sanity.py
@@ -51,7 +51,7 @@ design = Design()
@mark.parametrize("file", [str(f.relative_to(_TESTSUITE_ROOT)) for f in _TESTSUITE_ROOT.glob("sanity/**/*.vhdl")])
def test_AllVHDLSources(file):
- check_call([sys_executable, _GHDL_ROOT / "pyGHDL/cli/DOM.py", file], stderr=STDOUT)
+ check_call([sys_executable, _GHDL_ROOT / "pyGHDL/cli/dom.py", "pretty", "-f", file], stderr=STDOUT)
# document = Document(Path(file))
# design.Documents.append(document)