Skip to content

Commit e63cf90

Browse files
authored
NVC: fix error with the --gui flag (#930)
2 parents fc91e48 + 156af9e commit e63cf90

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

docs/news.d/926.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add NVC simulator support.

docs/news.d/930.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add NVC simulator support.

vunit/sim_if/nvc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def simulate(self, output_path, test_suite_name, config, elaborate_only):
286286
status = False
287287

288288
if self._gui and not elaborate_only:
289-
cmd = ["gtkwave"] + shlex.split(self._gtkwave_args) + [wave_file]
289+
cmd = ["gtkwave"] + shlex.split(self._gtkwave_args) + [str(wave_file)]
290290

291291
init_file = config.sim_options.get(self.name + ".gtkwave_script.gui", None)
292292
if init_file is not None:

0 commit comments

Comments
 (0)