Skip to content

Commit

Permalink
Workaround \ vs. / problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jul 29, 2024
1 parent 0e7b52a commit b8f0b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/GHDL.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def test_AnalyzeFaultyFile(self) -> None:
tool[tool.OptionPaths] = (Path("project/designB/file_B1.vhdl"), )

executable = self.getExecutablePath("ghdl", self._binaryDirectoryPath)
self.assertEqual(f"[\"{executable}\", \"analyze\", \"--std=08\", \"-fsynopsys\", \"-frelaxed\", \"-fexplicit\", \"--work=lib_Test\", \"--mb-comments\", \"project\\designB\\file_B1.vhdl\"]", repr(tool))
self.assertEqual(f"[\"{executable}\", \"analyze\", \"--std=08\", \"-fsynopsys\", \"-frelaxed\", \"-fexplicit\", \"--work=lib_Test\", \"--mb-comments\", \"project/designB/file_B1.vhdl\"]", repr(tool))

tool.StartProcess()
for line in tool.GetLineReader():
Expand Down

0 comments on commit b8f0b30

Please sign in to comment.