diff options
author | André Draszik <adraszik@tycoint.com> | 2017-06-26 09:36:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-28 20:55:08 +0100 |
commit | 68e763d54f252226dbf1448ce764384e1e7f2b23 (patch) | |
tree | e3492e0708d9bc1a66f304b7c13de0062576a7d5 | |
parent | 99e1b01cdc8323161a0cf557c793db12cf4988a1 (diff) | |
download | poky-68e763d54f252226dbf1448ce764384e1e7f2b23.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: 78c2897dff7cd9fe2cab511549cb146d5231e573)
Signed-off-by: André Draszik <adraszik@tycoint.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/archiver.py | 2 |
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): | |||
27 | self.write_config(features) | 27 | self.write_config(features) |
28 | 28 | ||
29 | bitbake('-c clean %s %s' % (include_recipe, exclude_recipe)) | 29 | bitbake('-c clean %s %s' % (include_recipe, exclude_recipe)) |
30 | bitbake("%s %s" % (include_recipe, exclude_recipe)) | 30 | bitbake("-c deploy_archives %s %s" % (include_recipe, exclude_recipe)) |
31 | 31 | ||
32 | bb_vars = get_bb_vars(['DEPLOY_DIR_SRC', 'TARGET_SYS']) | 32 | bb_vars = get_bb_vars(['DEPLOY_DIR_SRC', 'TARGET_SYS']) |
33 | src_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], bb_vars['TARGET_SYS']) | 33 | src_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], bb_vars['TARGET_SYS']) |