My run.py includes the following line:
tc.set_sim_option("ghdl.gtkwave_script.gui", join(test_path, "gtkwave.tcl"))
which produces the following error message:
GTKWAVE | couldn't read file ""/home/docker/DDR3/src/test/gtkwave.tcl"": no such file or directory
Removing the extra quotes below solves the problem:
|
cmd += ["--script", "\"{}\"".format(abspath(init_file))] |