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 64F3518B69 for ; Sun, 28 Jun 2015 11:01:51 +0000 (UTC) Received: (qmail 37349 invoked by uid 500); 28 Jun 2015 11:01:51 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 37309 invoked by uid 500); 28 Jun 2015 11:01:51 -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 37300 invoked by uid 99); 28 Jun 2015 11:01:51 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Jun 2015 11:01:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E66E1E0100; Sun, 28 Jun 2015 11:01:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: talluri@apache.org To: commits@cloudstack.apache.org Message-Id: <41dafa454ab64e09808c6644c1b2202d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to 17ecd65 Date: Sun, 28 Jun 2015 11:01:50 +0000 (UTC) Repository: cloudstack Updated Branches: refs/heads/master edfe6f4d4 -> 17ecd6533 CLOUDSTACK-8593: assign __testName if it is not getting set from test This closes #537 Signed-off-by: SrikanteswaraRao Talluri Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/17ecd653 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/17ecd653 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/17ecd653 Branch: refs/heads/master Commit: 17ecd65331558e58cbaf158f1fb3a294b607ae8a Parents: edfe6f4 Author: SrikanteswaraRao Talluri Authored: Sun Jun 28 15:52:31 2015 +0530 Committer: SrikanteswaraRao Talluri Committed: Sun Jun 28 16:30:53 2015 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/marvinPlugin.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/17ecd653/tools/marvin/marvin/marvinPlugin.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/marvinPlugin.py b/tools/marvin/marvin/marvinPlugin.py index dfba4c1..bd55763 100644 --- a/tools/marvin/marvin/marvinPlugin.py +++ b/tools/marvin/marvin/marvinPlugin.py @@ -168,6 +168,8 @@ class MarvinPlugin(Plugin): def beforeTest(self, test): self.__testModName = test.__str__() self.__testName = test.__str__().split()[0] + if not self.__testName: + self.__testName = "test" self.__testClient.identifier = '-'.\ join([self.__identifier, self.__testName]) if self.__tcRunLogger: