Remove the reason logging from END messages when running a group
for "standard" failures (e.g. TestFail, TestError, etc.). The reason
should already be logged at the point of failure, so the duplicate
message is just noise.
Risk: High
Visibility: END reasons for normal failures should be empty
Signed-off-by: John Admanski <[email protected]>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@2619 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/server_job.py b/server/server_job.py
index a37aa71..8f0ae00 100755
--- a/server/server_job.py
+++ b/server/server_job.py
@@ -464,7 +464,7 @@
finally:
self.record_prefix = old_record_prefix
except error.TestBaseException, e:
- self.record("END %s" % e.exit_status, subdir, name, str(e))
+ self.record("END %s" % e.exit_status, subdir, name)
exc_info = sys.exc_info()
except Exception, e:
err_msg = str(e) + '\n'