Skip to content

Commit e66b563

Browse files
authored
Use the absolute path for the valgrind log file
This fixes the issue when the relative path is provided, which causes the process not starting correctly and the tests - failing.
1 parent a80e0ec commit e66b563

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RLTest/debuggers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def generate_command(self, logfile=None):
2525
if self.suppressions:
2626
cmd += ['--suppressions=' + self.suppressions]
2727
if logfile:
28-
cmd += ['--log-file=' + logfile]
28+
cmd += ['--log-file=' + os.path.abspath(logfile)]
2929
return cmd
3030

3131

0 commit comments

Comments
 (0)