diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2014-07-17 15:53:35 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-17 12:36:19 +0100 |
commit | 14735be703de1b1e173d444b51df7aad902428d5 (patch) | |
tree | cf5bcb1e252a6b9d5891389042759a9eaa2b8210 /meta/lib/oeqa/runtime/pam.py | |
parent | 012a572e861d95d35c97a4da34dbad6d93cc9962 (diff) | |
download | poky-14735be703de1b1e173d444b51df7aad902428d5.tar.gz |
oeqa: fix return status in pam.py to match shadow-4.2.1
The return statuses of commands like `su --help' or `passwd --help'
in shadow 4.2.1 version are different from those in shadow 4.1.4.3
version.
Now that we've upgraded shadow to 4.2.1, we need to fix these statuses
in the pam.py to make things work as expected.
(From OE-Core rev: 6bc53438735690866358194dd9e88fa1d7435e2c)
Signed-off-by: Chen Qi <Qi.Chen@windriver.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.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/runtime/pam.py b/meta/lib/oeqa/runtime/pam.py index 52e1eb88e6..cc5c1bd7a1 100644 --- a/meta/lib/oeqa/runtime/pam.py +++ b/meta/lib/oeqa/runtime/pam.py | |||
@@ -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, 6, msg = "passwd command does not work as expected. Status and output:%s and %s" %(status, output)) | 20 | self.assertEqual(status, 0, 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, 2, msg = "su command does not work as expected. Status and output:%s and %s" %(status, output)) | 22 | self.assertEqual(status, 0, 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, 2, msg = "useradd command does not work as expected. Status and output:%s and %s" %(status, output)) | 24 | self.assertEqual(status, 0, msg = "useradd command does not work as expected. Status and output:%s and %s" %(status, output)) |