diff options
Diffstat (limited to 'testsuite/pyunit/dom/Sanity.py')
-rw-r--r-- | testsuite/pyunit/dom/Sanity.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/testsuite/pyunit/dom/Sanity.py b/testsuite/pyunit/dom/Sanity.py index 20beb8cbe..10258c38c 100644 --- a/testsuite/pyunit/dom/Sanity.py +++ b/testsuite/pyunit/dom/Sanity.py @@ -32,7 +32,7 @@ # ============================================================================ from sys import executable from subprocess import check_call, STDOUT -from pathlib import Path +from pathlib import Path from pytest import mark if __name__ == "__main__": @@ -43,11 +43,8 @@ if __name__ == "__main__": _TESTSUITE_ROOT = Path(__file__).parent.parent.parent.resolve() _GHDL_ROOT = _TESTSUITE_ROOT.parent + @mark.xfail @mark.parametrize("file", [str(f) for f in _TESTSUITE_ROOT.glob("sanity/**/*.vhdl")]) def test_AllVHDLSources(file): - check_call([ - executable, - _GHDL_ROOT / "pyGHDL/cli/DOM.py", - file - ], stderr=STDOUT) + check_call([executable, _GHDL_ROOT / "pyGHDL/cli/DOM.py", file], stderr=STDOUT) |