diff options
-rw-r--r-- | meta/lib/oeqa/runtime/buildcvs.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/buildiptables.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/buildsudoku.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/ldd.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/pam.py | 8 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/skeletoninit.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/smart.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/vnc.py | 2 |
8 files changed, 11 insertions, 11 deletions
diff --git a/meta/lib/oeqa/runtime/buildcvs.py b/meta/lib/oeqa/runtime/buildcvs.py index f1fbf19c1f..6201ed1a43 100644 --- a/meta/lib/oeqa/runtime/buildcvs.py +++ b/meta/lib/oeqa/runtime/buildcvs.py | |||
@@ -1,4 +1,4 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest | 1 | from oeqa.oetest import oeRuntimeTest, skipModule |
2 | from oeqa.utils.decorators import * | 2 | from oeqa.utils.decorators import * |
3 | from oeqa.utils.targetbuild import TargetBuildProject | 3 | from oeqa.utils.targetbuild import TargetBuildProject |
4 | 4 | ||
diff --git a/meta/lib/oeqa/runtime/buildiptables.py b/meta/lib/oeqa/runtime/buildiptables.py index f6061a7f98..c77b11452c 100644 --- a/meta/lib/oeqa/runtime/buildiptables.py +++ b/meta/lib/oeqa/runtime/buildiptables.py | |||
@@ -1,4 +1,4 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest | 1 | from oeqa.oetest import oeRuntimeTest, skipModule |
2 | from oeqa.utils.decorators import * | 2 | from oeqa.utils.decorators import * |
3 | from oeqa.utils.targetbuild import TargetBuildProject | 3 | from oeqa.utils.targetbuild import TargetBuildProject |
4 | 4 | ||
diff --git a/meta/lib/oeqa/runtime/buildsudoku.py b/meta/lib/oeqa/runtime/buildsudoku.py index a754f1d9ea..f51af92ec6 100644 --- a/meta/lib/oeqa/runtime/buildsudoku.py +++ b/meta/lib/oeqa/runtime/buildsudoku.py | |||
@@ -1,4 +1,4 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest | 1 | from oeqa.oetest import oeRuntimeTest, skipModule |
2 | from oeqa.utils.decorators import * | 2 | from oeqa.utils.decorators import * |
3 | from oeqa.utils.targetbuild import TargetBuildProject | 3 | from oeqa.utils.targetbuild import TargetBuildProject |
4 | 4 | ||
diff --git a/meta/lib/oeqa/runtime/ldd.py b/meta/lib/oeqa/runtime/ldd.py index 4374530fc4..079130f833 100644 --- a/meta/lib/oeqa/runtime/ldd.py +++ b/meta/lib/oeqa/runtime/ldd.py | |||
@@ -1,5 +1,5 @@ | |||
1 | import unittest | 1 | import unittest |
2 | from oeqa.oetest import oeRuntimeTest | 2 | from oeqa.oetest import oeRuntimeTest, skipModule |
3 | from oeqa.utils.decorators import * | 3 | from oeqa.utils.decorators import * |
4 | 4 | ||
5 | def setUpModule(): | 5 | def setUpModule(): |
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 | ||
4 | import unittest | 4 | import unittest |
5 | from oeqa.oetest import oeRuntimeTest | 5 | from oeqa.oetest import oeRuntimeTest, skipModule |
6 | from oeqa.utils.decorators import * | 6 | from oeqa.utils.decorators import * |
7 | 7 | ||
8 | def setUpModule(): | 8 | def 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)) |
diff --git a/meta/lib/oeqa/runtime/skeletoninit.py b/meta/lib/oeqa/runtime/skeletoninit.py index 557e715a3e..ddcad203d9 100644 --- a/meta/lib/oeqa/runtime/skeletoninit.py +++ b/meta/lib/oeqa/runtime/skeletoninit.py | |||
@@ -2,7 +2,7 @@ | |||
2 | # Note that the image under test must have meta-skeleton layer in bblayers and IMAGE_INSTALL_append = " service" in local.conf | 2 | # Note that the image under test must have meta-skeleton layer in bblayers and IMAGE_INSTALL_append = " service" in local.conf |
3 | 3 | ||
4 | import unittest | 4 | import unittest |
5 | from oeqa.oetest import oeRuntimeTest | 5 | from oeqa.oetest import oeRuntimeTest, skipModule |
6 | from oeqa.utils.decorators import * | 6 | from oeqa.utils.decorators import * |
7 | 7 | ||
8 | def setUpModule(): | 8 | def setUpModule(): |
diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py index 195f1170c6..3130373f4b 100644 --- a/meta/lib/oeqa/runtime/smart.py +++ b/meta/lib/oeqa/runtime/smart.py | |||
@@ -1,6 +1,6 @@ | |||
1 | import unittest | 1 | import unittest |
2 | import re | 2 | import re |
3 | from oeqa.oetest import oeRuntimeTest | 3 | from oeqa.oetest import oeRuntimeTest, skipModule |
4 | from oeqa.utils.decorators import * | 4 | from oeqa.utils.decorators import * |
5 | from oeqa.utils.httpserver import HTTPService | 5 | from oeqa.utils.httpserver import HTTPService |
6 | 6 | ||
diff --git a/meta/lib/oeqa/runtime/vnc.py b/meta/lib/oeqa/runtime/vnc.py index 5ed10727bc..1b4652b939 100644 --- a/meta/lib/oeqa/runtime/vnc.py +++ b/meta/lib/oeqa/runtime/vnc.py | |||
@@ -1,4 +1,4 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest | 1 | from oeqa.oetest import oeRuntimeTest, skipModuleUnless |
2 | from oeqa.utils.decorators import * | 2 | from oeqa.utils.decorators import * |
3 | import re | 3 | import re |
4 | 4 | ||