summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/pam.py
diff options
context:
space:
mode:
authorLucian Musat <georgex.l.musat@intel.com>2014-07-24 15:41:25 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-25 15:34:00 +0100
commit984f03457adced77482f9c3f0b95349c9b17c7e5 (patch)
tree91b414a4d8a08121362ae8b0b370e7d45fddf069 /meta/lib/oeqa/runtime/pam.py
parent0c4dd0ad168e138ba96eaf27aa7e513aaf6704ee (diff)
downloadpoky-984f03457adced77482f9c3f0b95349c9b17c7e5.tar.gz
oeqa/runtime: Added skipModule import for test modules that use it.
The modules that use skipModule should import it themselves and not rely on somebody else to import it. (From OE-Core rev: 6a14db407d471e717f41342ac0700e6a383c32c3) Signed-off-by: Lucian Musat <georgex.l.musat@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/pam.py')
-rw-r--r--meta/lib/oeqa/runtime/pam.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/pam.py b/meta/lib/oeqa/runtime/pam.py
index cc5c1bd7a1..c26e6ea849 100644
--- a/meta/lib/oeqa/runtime/pam.py
+++ b/meta/lib/oeqa/runtime/pam.py
@@ -2,7 +2,7 @@
2# Note that the image under test must have "pam" in DISTRO_FEATURES 2# Note that the image under test must have "pam" in DISTRO_FEATURES
3 3
4import unittest 4import unittest
5from oeqa.oetest import oeRuntimeTest 5from oeqa.oetest import oeRuntimeTest, skipModule
6from oeqa.utils.decorators import * 6from oeqa.utils.decorators import *
7 7
8def setUpModule(): 8def setUpModule():
@@ -17,8 +17,8 @@ class PamBasicTest(oeRuntimeTest):
17 (status, output) = self.target.run('login --help') 17 (status, output) = self.target.run('login --help')
18 self.assertEqual(status, 1, msg = "login command does not work as expected. Status and output:%s and %s" %(status, output)) 18 self.assertEqual(status, 1, msg = "login command does not work as expected. Status and output:%s and %s" %(status, output))
19 (status, output) = self.target.run('passwd --help') 19 (status, output) = self.target.run('passwd --help')
20 self.assertEqual(status, 0, msg = "passwd command does not work as expected. Status and output:%s and %s" %(status, output)) 20 self.assertEqual(status, 6, msg = "passwd command does not work as expected. Status and output:%s and %s" %(status, output))
21 (status, output) = self.target.run('su --help') 21 (status, output) = self.target.run('su --help')
22 self.assertEqual(status, 0, msg = "su command does not work as expected. Status and output:%s and %s" %(status, output)) 22 self.assertEqual(status, 2, msg = "su command does not work as expected. Status and output:%s and %s" %(status, output))
23 (status, output) = self.target.run('useradd --help') 23 (status, output) = self.target.run('useradd --help')
24 self.assertEqual(status, 0, msg = "useradd command does not work as expected. Status and output:%s and %s" %(status, output)) 24 self.assertEqual(status, 2, msg = "useradd command does not work as expected. Status and output:%s and %s" %(status, output))