aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/dom/Sanity.py
diff options
context:
space:
mode:
authortgingold <tgingold@users.noreply.github.com>2022-12-24 16:33:33 +0100
committerGitHub <noreply@github.com>2022-12-24 16:33:33 +0100
commita1b9335c08140fc9fc5d02591f3cb2870c5ba988 (patch)
treeea1659124a516bcadb592f836c3426f93d1b09fb /testsuite/pyunit/dom/Sanity.py
parentfd0c0bc0b8357f58d44f9b7e03367d5c2e3e906f (diff)
parent1e5aad63f64ff9b91b1a10c16f82fa29de42dbb4 (diff)
downloadghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.tar.gz
ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.tar.bz2
ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.zip
Merge pull request #2282 from Paebbels/paebbels/ams
Activate VHDL-2008 and VHDL-AMS based on selected VHDL dialect
Diffstat (limited to 'testsuite/pyunit/dom/Sanity.py')
-rw-r--r--testsuite/pyunit/dom/Sanity.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/testsuite/pyunit/dom/Sanity.py b/testsuite/pyunit/dom/Sanity.py
index 54cb4103b..4fc721d55 100644
--- a/testsuite/pyunit/dom/Sanity.py
+++ b/testsuite/pyunit/dom/Sanity.py
@@ -34,6 +34,7 @@ from pathlib import Path
from pytest import mark
+from pyVHDLModel import VHDLVersion
from pyGHDL.dom.NonStandard import Design, Document
@@ -55,6 +56,8 @@ def test_AllVHDLSources(parameters):
id, file = parameters.split(":")
filePath = _TESTSUITE_ROOT / file
+ vhdlVersion = VHDLVersion.AMS2017 if "ams" in file else VHDLVersion.VHDL2008
+
lib = design.GetLibrary(f"sanity_{id}")
- document = Document(filePath)
+ document = Document(filePath, vhdlVersion=vhdlVersion)
design.AddDocument(document, lib)