run-test: include test name in the return vlog
authorPierre-Yves David <pierre-yves.david@fb.com>
Thu, 19 Mar 2015 13:15:20 -0700
changeset 24926 3fe1e07f1a32
parent 24925 d9832a12a06e
child 24927 cd0068232ec0
run-test: include test name in the return vlog Otherwise using --verbose and --jobs gives useless output.
tests/run-tests.py
--- a/tests/run-tests.py	Tue Apr 28 12:31:30 2015 -0400
+++ b/tests/run-tests.py	Thu Mar 19 13:15:20 2015 -0700
@@ -620,7 +620,7 @@
                 f.write(line)
             f.close()
 
-        vlog("# Ret was:", self._ret)
+        vlog("# Ret was:", self._ret, '(%s)' % self.name)
 
     def _run(self, env):
         # This should be implemented in child classes to run tests.