mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
validate: baseclasses: include env variable in logged command
We were missing the env variables in the command written to the log file, making it impossible to re-run the test later from the logs.
This commit is contained in:
parent
1d4801d679
commit
da22878a5f
1 changed files with 1 additions and 1 deletions
|
@ -526,7 +526,7 @@ class Test(Loggable):
|
||||||
"Test name: %s\n"
|
"Test name: %s\n"
|
||||||
"Command: '%s'\n"
|
"Command: '%s'\n"
|
||||||
"=================\n\n"
|
"=================\n\n"
|
||||||
% (self.classname, ' '.join(self.command)))
|
% (self.classname, self.get_command_repr()))
|
||||||
self.out.flush()
|
self.out.flush()
|
||||||
else:
|
else:
|
||||||
message = "Launching: %s%s\n" \
|
message = "Launching: %s%s\n" \
|
||||||
|
|
Loading…
Reference in a new issue