diff options
author | Lucian Musat <georgex.l.musat@intel.com> | 2014-07-24 15:41:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-25 15:34:00 +0100 |
commit | 984f03457adced77482f9c3f0b95349c9b17c7e5 (patch) | |
tree | 91b414a4d8a08121362ae8b0b370e7d45fddf069 /meta/lib/oeqa/runtime/skeletoninit.py | |
parent | 0c4dd0ad168e138ba96eaf27aa7e513aaf6704ee (diff) | |
download | poky-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/skeletoninit.py')
-rw-r--r-- | meta/lib/oeqa/runtime/skeletoninit.py | 2 |
1 files changed, 1 insertions, 1 deletions
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(): |