diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-03-15 20:40:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 11:03:14 +0000 |
commit | 00ca890d8a56c4c05ce5bda87b3d9d1452ddfa36 (patch) | |
tree | 8a35c80774ecb4339d0e9a34a76a139849718e1d /meta | |
parent | 58316a2890782d206e9b9472ba483367f7560109 (diff) | |
download | openembedded-core-00ca890d8a56c4c05ce5bda87b3d9d1452ddfa36.tar.gz openembedded-core-00ca890d8a56c4c05ce5bda87b3d9d1452ddfa36.tar.bz2 openembedded-core-00ca890d8a56c4c05ce5bda87b3d9d1452ddfa36.zip |
oe-selftest: add missing dependency to test_recipetool_create_git
libmatchbox links to libjpeg if it is present so just explicitly build
it and then check it appears in DEPENDS.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/devtool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index 869fecf7e6..dc1cf21064 100644 --- a/meta/lib/oeqa/selftest/devtool.py +++ b/meta/lib/oeqa/selftest/devtool.py @@ -67,7 +67,7 @@ class DevtoolTests(oeSelfTest): def test_recipetool_create_git(self): # Ensure we have the right data in shlibs/pkgdata - bitbake('libpng pango libx11 libxext') + bitbake('libpng pango libx11 libxext jpeg') # Try adding a recipe tempdir = tempfile.mkdtemp(prefix='devtoolqa') self.track_for_cleanup(tempdir) @@ -83,7 +83,7 @@ class DevtoolTests(oeSelfTest): checkvars['S'] = '${WORKDIR}/git' checkvars['PV'] = '1.0+git${SRCPV}' checkvars['SRC_URI'] = srcuri - checkvars['DEPENDS'] = 'libpng pango libx11 libxext' + checkvars['DEPENDS'] = 'libpng pango libx11 libxext jpeg' inherits = [] with open(recipefile, 'r') as f: for line in f: |