validate:tools: Add informations about the test in the log files

This commit is contained in:
Thibault Saunier 2014-01-10 17:21:44 +01:00
parent a6f3d5270c
commit 1c614b9ed9

View file

@ -171,6 +171,13 @@ class Test(Loggable):
self.time_taken = time.time() - self._starting_time
self.reporter.out.seek(0)
self.reporter.out.write("=================\n"
"Test name: %s\n"
"Command: '%s'\n"
"=================\n\n"
% (self.classname, self.command))
class GstValidateTest(Test):