diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-30 20:45:03 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-07-01 06:39:47 +0200 |
commit | c75693ff6f5c7b05d49ce916e34aaba61b688e31 (patch) | |
tree | ac5eca19c8fe114be81d3f2cb6e47c18a462865a /testsuite | |
parent | 301dea333ec3e28e95a43b1a4af569ebbedd6ab9 (diff) | |
download | ghdl-c75693ff6f5c7b05d49ce916e34aaba61b688e31.tar.gz ghdl-c75693ff6f5c7b05d49ce916e34aaba61b688e31.tar.bz2 ghdl-c75693ff6f5c7b05d49ce916e34aaba61b688e31.zip |
New command line interface for DOM.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/pyunit/dom/Sanity.py | 2 |
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) |