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:
Guillaume Desmottes 2019-02-08 11:46:58 +01:00 committed by Thibault Saunier
parent 1d4801d679
commit da22878a5f

View file

@ -526,7 +526,7 @@ class Test(Loggable):
"Test name: %s\n"
"Command: '%s'\n"
"=================\n\n"
% (self.classname, ' '.join(self.command)))
% (self.classname, self.get_command_repr()))
self.out.flush()
else:
message = "Launching: %s%s\n" \