aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorAndré Draszik <adraszik@tycoint.com>2017-06-26 09:36:18 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-28 20:54:54 +0100
commit78c2897dff7cd9fe2cab511549cb146d5231e573 (patch)
tree9f7d880b7f0924fff467d55aa00fd6118bb5f4e2 /meta/lib
parent709f02c5cb25983090251c6237bac4fc0a295c4f (diff)
downloadopenembedded-core-contrib-78c2897dff7cd9fe2cab511549cb146d5231e573.tar.gz
selftest/archiver: only execute deploy_archives task
There should be no reason to execute a full build, as we're just interested in the deployment of the archives. The newly added tests already do the same. Signed-off-by: André Draszik <adraszik@tycoint.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/archiver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/archiver.py b/meta/lib/oeqa/selftest/cases/archiver.py
index 7ef92cddac..72026d573c 100644
--- a/meta/lib/oeqa/selftest/cases/archiver.py
+++ b/meta/lib/oeqa/selftest/cases/archiver.py
@@ -27,7 +27,7 @@ class Archiver(OESelftestTestCase):
self.write_config(features)
bitbake('-c clean %s %s' % (include_recipe, exclude_recipe))
- bitbake("%s %s" % (include_recipe, exclude_recipe))
+ bitbake("-c deploy_archives %s %s" % (include_recipe, exclude_recipe))
bb_vars = get_bb_vars(['DEPLOY_DIR_SRC', 'TARGET_SYS'])
src_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], bb_vars['TARGET_SYS'])