summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/smart.py
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-07-13 17:57:56 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-16 10:04:17 +0100
commit3dee534f1e25109e0bdb681de0746c336f4b8840 (patch)
tree6d5dd2db2d8b9fb73a316b526345c49c28ca9e4d /meta/lib/oeqa/runtime/smart.py
parent656a8b97c1f3f072834b6885282031e05ec61bd5 (diff)
downloadpoky-3dee534f1e25109e0bdb681de0746c336f4b8840.tar.gz
lib/oeqa: fix dependecy check
Adds missing skip for smart test and fix the check (which I somehow broke a while ago). (From OE-Core rev: cf1790d992f067be8d5f9894458f55f6f1bdc61f) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/smart.py')
-rw-r--r--meta/lib/oeqa/runtime/smart.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py
index 8cfacd4602..0b03a30a3f 100644
--- a/meta/lib/oeqa/runtime/smart.py
+++ b/meta/lib/oeqa/runtime/smart.py
@@ -10,6 +10,7 @@ def setUpModule():
10 10
11class SmartHelpTest(oeRuntimeTest): 11class SmartHelpTest(oeRuntimeTest):
12 12
13 @skipUnlessPassed('test_ssh')
13 def test_smart_help(self): 14 def test_smart_help(self):
14 status = self.target.run('smart --help')[0] 15 status = self.target.run('smart --help')[0]
15 self.assertEqual(status, 0) 16 self.assertEqual(status, 0)