]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest/archiver: only execute deploy_archives task
authorAndré Draszik <adraszik@tycoint.com>
Mon, 26 Jun 2017 08:36:18 +0000 (09:36 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 28 Jun 2017 19:54:54 +0000 (20:54 +0100)
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>
meta/lib/oeqa/selftest/cases/archiver.py

index 7ef92cddac39d81cb75a2c005b6071367d4ac426..72026d573cca8551af4d8099ef6fb00b5293c80d 100644 (file)
@@ -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'])