You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ja...@apache.org on 2015/06/29 09:01:09 UTC

[48/50] [abbrv] git commit: updated refs/heads/dhcpoffload to 45721ae

CLOUDSTACK-8593: assign __testName if it is not getting set from test
  This closes #537
Signed-off-by: SrikanteswaraRao Talluri <ta...@apache.org>


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/dhcpoffload
Commit: 17ecd65331558e58cbaf158f1fb3a294b607ae8a
Parents: edfe6f4
Author: SrikanteswaraRao Talluri <ta...@apache.org>
Authored: Sun Jun 28 15:52:31 2015 +0530
Committer: SrikanteswaraRao Talluri <ta...@apache.org>
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: