diff options
Diffstat (limited to 'testsuite/pyunit/libghdl/Comments.py')
-rw-r--r-- | testsuite/pyunit/libghdl/Comments.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/Comments.py b/testsuite/pyunit/libghdl/Comments.py index 594571a5d..850d6137a 100644 --- a/testsuite/pyunit/libghdl/Comments.py +++ b/testsuite/pyunit/libghdl/Comments.py @@ -199,6 +199,9 @@ class Instantiate(TestCase): def test_sig(self) -> None: self.checkFile(self._root / "sig.vhdl") + def test_sig_2(self) -> None: + self.checkFile(self._root / "sig_2.vhdl") + @expectedFailure def test_var_fail(self) -> None: self.checkFile(self._root / "var_fail.vhdl") @@ -236,6 +239,9 @@ class Instantiate(TestCase): def test_element_3(self) -> None: self.checkFile(self._root / "element_3.vhdl") + def test_element_4(self) -> None: + self.checkFile(self._root / "element_4.vhdl") + @expectedFailure def test_enum_fail(self) -> None: self.checkFile(self._root / "enum_fail.vhdl") |