diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2016-11-01 07:48:16 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 12:03:57 +0000 |
commit | b39c61f2d442c79d03b73e8ffd104996fcb2177e (patch) | |
tree | db476e1a099b5cb6d45d80f3b25a2b205e583958 /meta/lib/oeqa/runtime_cases/pam.py | |
parent | 2aa5a4954d7610f31875ba7e655f25f8892517b6 (diff) | |
download | openembedded-core-b39c61f2d442c79d03b73e8ffd104996fcb2177e.tar.gz openembedded-core-b39c61f2d442c79d03b73e8ffd104996fcb2177e.tar.bz2 openembedded-core-b39c61f2d442c79d03b73e8ffd104996fcb2177e.zip |
oeqa/runtime/cases: Migrate runtime tests.
This migrates current runtime test suite to be used with the new framework.
[YOCTO #10234]
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Diffstat (limited to 'meta/lib/oeqa/runtime_cases/pam.py')
-rw-r--r-- | meta/lib/oeqa/runtime_cases/pam.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/meta/lib/oeqa/runtime_cases/pam.py b/meta/lib/oeqa/runtime_cases/pam.py deleted file mode 100644 index b7f2dfa49b..0000000000 --- a/meta/lib/oeqa/runtime_cases/pam.py +++ /dev/null @@ -1,25 +0,0 @@ -# This test should cover https://bugzilla.yoctoproject.org/tr_show_case.cgi?case_id=287 testcase -# Note that the image under test must have "pam" in DISTRO_FEATURES - -import unittest -from oeqa.oetest import oeRuntimeTest, skipModule -from oeqa.utils.decorators import * - -def setUpModule(): - if not oeRuntimeTest.hasFeature("pam"): - skipModule("target doesn't have 'pam' in DISTRO_FEATURES") - - -class PamBasicTest(oeRuntimeTest): - - @testcase(1543) - @skipUnlessPassed('test_ssh') - def test_pam(self): - (status, output) = self.target.run('login --help') - self.assertEqual(status, 1, msg = "login command does not work as expected. Status and output:%s and %s" %(status, output)) - (status, output) = self.target.run('passwd --help') - self.assertEqual(status, 0, msg = "passwd command does not work as expected. Status and output:%s and %s" %(status, output)) - (status, output) = self.target.run('su --help') - self.assertEqual(status, 0, msg = "su command does not work as expected. Status and output:%s and %s" %(status, output)) - (status, output) = self.target.run('useradd --help') - self.assertEqual(status, 0, msg = "useradd command does not work as expected. Status and output:%s and %s" %(status, output)) |