aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/tests
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-05-23 12:34:04 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-07 16:41:01 +0100
commitc4a5bd810ca92d57c334113c528bd1d233b3eac4 (patch)
tree1f1861e7c4ea31bbef036722446a889ca113468b /meta/lib/oe/tests
parent6ff15b794d3027d315712e6a5abae1bed0159d1a (diff)
downloadopenembedded-core-c4a5bd810ca92d57c334113c528bd1d233b3eac4.tar.gz
test-utils: handle import bb failing and skip the test
Instead of reporting an error when bb cannot be imported, skip the test instead. This makes it a lot easier to iterate a test suite when we don't care about this particular test. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/lib/oe/tests')
-rw-r--r--meta/lib/oe/tests/test_utils.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/lib/oe/tests/test_utils.py b/meta/lib/oe/tests/test_utils.py
index 78b1361161..5e1ea0e6ea 100644
--- a/meta/lib/oe/tests/test_utils.py
+++ b/meta/lib/oe/tests/test_utils.py
@@ -1,11 +1,15 @@
import unittest
-import bb, oe.utils
+import oe.utils
class TestPackagesFilterOutSystem(unittest.TestCase):
def test_filter(self):
"""
Test that oe.utils.packages_filter_out_system works.
"""
+ try:
+ import bb
+ except ImportError:
+ self.skipTest("Cannot import bb")
d = bb.data_smart.DataSmart()
d.setVar("PN", "foo")