aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/dom/AllSources.py
blob: 7dabf1b10bd04e20d8fdfda7547a141d7f598489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from sys import executable
from subprocess import check_call, STDOUT
from pathlib  import Path
from glob import glob
from pytest import mark

if __name__ == "__main__":
	print("ERROR: you called a testcase declaration file as an executable module.")
	print("Use: 'python -m unitest <testcase module>'")
	exit(1)


@mark.parametrize(
	"file",
	glob(str(Path(__file__).resolve().parent.parent.parent / 'sanity' / '*' / '*.vhdl'), recursive=True)
)
@mark.xfail
def test_AllVHDLSources(file):
	check_call([
		executable,
		str(Path(__file__).resolve().parent.parent.parent.parent / 'pyGHDL' / 'cli' / 'DOM.py'),
		file
	], stderr=STDOUT)