From 09e1eb69cb717078a931bdedd30ab09d48d2064d Mon Sep 17 00:00:00 2001 From: Santhosh Edukulla Date: Wed, 19 Mar 2014 18:34:02 -0700 Subject: [PATCH] Added a change to fix the local variable issue. --- tools/marvin/marvin/marvinPlugin.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/marvin/marvin/marvinPlugin.py b/tools/marvin/marvin/marvinPlugin.py index 3a364b16977..09ff340782a 100644 --- a/tools/marvin/marvin/marvinPlugin.py +++ b/tools/marvin/marvin/marvinPlugin.py @@ -271,11 +271,11 @@ class MarvinPlugin(Plugin): test_names = self.conf.workingDir else: test_names = self.conf.testNames - for suites in test_names: - if os.path.isdir(suites): - self.__runSuites(suites) - if os.path.isfile(suites): - self.__runSuite(suites) + for suites in test_names: + if os.path.isdir(suites): + self.__runSuites(suites) + if os.path.isfile(suites): + self.__runSuite(suites) return SUCCESS except Exception as e: print "Exception Occurred under startMarvin: %s" % \