summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/pam.py
diff options
context:
space:
mode:
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))