Skip to content

Commit 9c40c33

Browse files
committed
Investiagte Python 3.14 problem on Ubuntu 24.04.
1 parent 556fcae commit 9c40c33

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.idea/pyEDAA.CLITool.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/unit/GHDL.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ def test_AnalyzeSingleFiles(self) -> None:
136136

137137
analyzer = self._GetAnalyzer()
138138
for file in libraryFiles:
139+
print(f"analyze '{file}'")
139140
tool = analyzer.GetGHDLAsAnalyzer()
140141
tool[tool.FlagLibrary] = "libCommon"
141142
tool[tool.OptionPaths] = (file, )
@@ -147,6 +148,7 @@ def test_AnalyzeSingleFiles(self) -> None:
147148
self.assertEqual(0, tool.ExitCode)
148149

149150
for file in designFiles:
151+
print(f"analyze '{file}'")
150152
tool = analyzer.GetGHDLAsAnalyzer()
151153
tool[tool.FlagLibrary] = "libDesign"
152154
tool[tool.OptionPaths] = (file, )

0 commit comments

Comments
 (0)