summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorAndré Draszik <adraszik@tycoint.com>2017-10-06 13:12:48 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-05 22:39:47 +0000
commit0c9925f2291b2eeb57958b4cf836ddeda9d710b4 (patch)
treebfc999e06371210805895b35041696b7c66aabbe /meta/lib
parentedae320ef563675971767a53552054932bd8561e (diff)
downloadpoky-0c9925f2291b2eeb57958b4cf836ddeda9d710b4.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. (From OE-Core rev: 89a00238c45b0457bdf7add3629124901bc72f4b) Signed-off-by: André Draszik <adraszik@tycoint.com> Signed-off-by: Ross Burton <ross.burton@intel.com> (cherry picked from commit 78c2897dff7cd9fe2cab511549cb146d5231e573) Signed-off-by: André Draszik <adraszik@tycoint.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/archiver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/archiver.py b/meta/lib/oeqa/selftest/archiver.py
index 06b2597050..7f01c36d4e 100644
--- a/meta/lib/oeqa/selftest/archiver.py
+++ b/meta/lib/oeqa/selftest/archiver.py
@@ -29,7 +29,7 @@ class Archiver(oeSelfTest):
29 self.write_config(features) 29 self.write_config(features)
30 30
31 bitbake('-c clean %s %s' % (include_recipe, exclude_recipe)) 31 bitbake('-c clean %s %s' % (include_recipe, exclude_recipe))
32 bitbake("%s %s" % (include_recipe, exclude_recipe)) 32 bitbake("-c deploy_archives %s %s" % (include_recipe, exclude_recipe))
33 33
34 bb_vars = get_bb_vars(['DEPLOY_DIR_SRC', 'TARGET_SYS']) 34 bb_vars = get_bb_vars(['DEPLOY_DIR_SRC', 'TARGET_SYS'])
35 src_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], bb_vars['TARGET_SYS']) 35 src_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], bb_vars['TARGET_SYS'])