Skip to content

Commit

Permalink
Use the absolute path for the valgrind log file
Browse files Browse the repository at this point in the history
This fixes the issue when the relative path is provided, which causes the process not starting correctly and the tests - failing.
  • Loading branch information
iddm authored Dec 4, 2024
1 parent a80e0ec commit e66b563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RLTest/debuggers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def generate_command(self, logfile=None):
if self.suppressions:
cmd += ['--suppressions=' + self.suppressions]
if logfile:
cmd += ['--log-file=' + logfile]
cmd += ['--log-file=' + os.path.abspath(logfile)]
return cmd


Expand Down

0 comments on commit e66b563

Please sign in to comment.