[oe-commits] Stefan Stanacar : lib/oeqa: fix dependecy check

git at git.openembedded.org git at git.openembedded.org
Tue Jul 16 08:57:10 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: cf1790d992f067be8d5f9894458f55f6f1bdc61f
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=cf1790d992f067be8d5f9894458f55f6f1bdc61f

Author: Stefan Stanacar <stefanx.stanacar at intel.com>
Date:   Sat Jul 13 17:57:56 2013 +0300

lib/oeqa: fix dependecy check

Adds missing skip for smart test and fix the check (which I somehow broke
a while ago).

Signed-off-by: Stefan Stanacar <stefanx.stanacar at intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/lib/oeqa/runtime/smart.py    |    1 +
 meta/lib/oeqa/utils/decorators.py |    4 +++-
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py
index 8cfacd4..0b03a30 100644
--- a/meta/lib/oeqa/runtime/smart.py
+++ b/meta/lib/oeqa/runtime/smart.py
@@ -10,6 +10,7 @@ def setUpModule():
 
 class SmartHelpTest(oeRuntimeTest):
 
+    @skipUnlessPassed('test_ssh')
     def test_smart_help(self):
         status = self.target.run('smart --help')[0]
         self.assertEqual(status, 0)
diff --git a/meta/lib/oeqa/utils/decorators.py b/meta/lib/oeqa/utils/decorators.py
index adec65e..e0ca6fd 100644
--- a/meta/lib/oeqa/utils/decorators.py
+++ b/meta/lib/oeqa/utils/decorators.py
@@ -41,7 +41,9 @@ class skipUnlessPassed(object):
 
     def __call__(self,f):
         def wrapped_f(*args):
-            if self.testcase in (oeRuntimeTest.testSkipped, oeRuntimeTest.testFailures, oeRuntimeTest.testErrors):
+            if self.testcase in oeRuntimeTest.testSkipped or \
+                    self.testcase in  oeRuntimeTest.testFailures or \
+                    self.testcase in oeRuntimeTest.testErrors:
                 raise unittest.SkipTest("Testcase dependency not met: %s" % self.testcase)
             f(*args)
         wrapped_f.__name__ = f.__name__



More information about the Openembedded-commits mailing list