diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-06-22 07:26:37 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-06-22 07:26:37 +0200 |
commit | d9791f7bd9c363487538ce0848a4c2007e33b5a6 (patch) | |
tree | 4e1112661f7b8c69f53b11f05aa1a1550fed300c /testsuite | |
parent | 9a4648be97c9f0246672a6d23f052d08b3980db7 (diff) | |
download | ghdl-d9791f7bd9c363487538ce0848a4c2007e33b5a6.tar.gz ghdl-d9791f7bd9c363487538ce0848a4c2007e33b5a6.tar.bz2 ghdl-d9791f7bd9c363487538ce0848a4c2007e33b5a6.zip |
testsuite/pyunit/dom: test only vhdl source files from sanity/
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/pyunit/dom/AllSources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/pyunit/dom/AllSources.py b/testsuite/pyunit/dom/AllSources.py index 645394742..7dabf1b10 100644 --- a/testsuite/pyunit/dom/AllSources.py +++ b/testsuite/pyunit/dom/AllSources.py @@ -12,7 +12,7 @@ if __name__ == "__main__": @mark.parametrize( "file", - glob(str(Path(__file__).resolve().parent.parent.parent.parent / '**' / '*.vhdl'), recursive=True) + glob(str(Path(__file__).resolve().parent.parent.parent / 'sanity' / '*' / '*.vhdl'), recursive=True) ) @mark.xfail def test_AllVHDLSources(file): |