Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1E81E10857 for ; Mon, 28 Oct 2013 06:00:23 +0000 (UTC) Received: (qmail 2976 invoked by uid 500); 28 Oct 2013 06:00:20 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 2891 invoked by uid 500); 28 Oct 2013 06:00:20 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 2870 invoked by uid 99); 28 Oct 2013 06:00:17 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Oct 2013 06:00:17 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 7971D882B31; Mon, 28 Oct 2013 06:00:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tsp@apache.org To: commits@cloudstack.apache.org Date: Mon, 28 Oct 2013 06:00:18 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] git commit: updated refs/heads/master to b4ceefa Adding readable start and end time stamps Signed-off-by: Santhosh Edukulla Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b4ceefa4 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b4ceefa4 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b4ceefa4 Branch: refs/heads/master Commit: b4ceefa469cfc1ebce8e162ed569a5c844d8765e Parents: f4fb5f5 Author: Santhosh Edukulla Authored: Fri Oct 25 23:39:35 2013 +0530 Committer: Prasanna Santhanam Committed: Mon Oct 28 11:29:27 2013 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/marvinPlugin.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b4ceefa4/tools/marvin/marvin/marvinPlugin.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/marvinPlugin.py b/tools/marvin/marvin/marvinPlugin.py index 3b282e4..c5931e0 100644 --- a/tools/marvin/marvin/marvinPlugin.py +++ b/tools/marvin/marvin/marvinPlugin.py @@ -140,9 +140,10 @@ class MarvinPlugin(Plugin): if self.startTime is not None: totTime = int(endTime - self.startTime) self.logger.debug( - "****TestCaseName: %s; Time Taken: %s Seconds; \ - StartTime: %s; EndTime: %s****" - % (self.testName, str(totTime), self.startTime, endTime)) + "TestCaseName: %s; Time Taken: %s Seconds; \ + StartTime: %s; EndTime: %s" + % (self.testName, str(totTime), + str(time.ctime(self.startTime)), str(time.ctime(endTime)))) def _injectClients(self, test): self.debug_stream. \