diff options
author | Daniel Istrate <daniel.alexandrux.istrate@intel.com> | 2016-02-19 12:17:54 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-29 23:25:41 +0100 |
commit | 51bef86ce52fdc2455cd1879e3e19d5ccc5c1c9c (patch) | |
tree | e135113ca1aefc38bc6be1d01390855ceaef6520 | |
parent | b3f80743cd1b9a15a8ee4d20c2a54c2f6cbcd13c (diff) | |
download | openembedded-core-51bef86ce52fdc2455cd1879e3e19d5ccc5c1c9c.tar.gz openembedded-core-51bef86ce52fdc2455cd1879e3e19d5ccc5c1c9c.tar.bz2 openembedded-core-51bef86ce52fdc2455cd1879e3e19d5ccc5c1c9c.zip |
oeqa/selftest/bbtests: Test bbappend order
BitBake should append to recipe in a predictable order.
fix for [YOCTO #9145]
test for [YOCTO #9138]
Signed-off-by: Daniel Istrate <daniel.alexandrux.istrate@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/bbtests.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index 70e5b29218..26728a4b41 100644 --- a/meta/lib/oeqa/selftest/bbtests.py +++ b/meta/lib/oeqa/selftest/bbtests.py @@ -247,3 +247,26 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\" for task in tasks: self.assertIn('_setscene', task, 'A task different from _setscene ran: %s.\n' 'Executed tasks were: %s' % (task, str(tasks))) + + @testcase(1425) + def test_bbappend_order(self): + """ Bitbake should bbappend to recipe in a predictable order """ + test_recipe = 'ed' + test_recipe_summary_before = get_bb_var('SUMMARY', test_recipe) + test_recipe_pv = get_bb_var('PV', test_recipe) + recipe_append_file = test_recipe + '_' + test_recipe_pv + '.bbappend' + expected_recipe_summary = test_recipe_summary_before + + for i in range(5): + recipe_append_dir = test_recipe + '_test_' + str(i) + recipe_append_path = os.path.join(self.testlayer_path, 'recipes-test', recipe_append_dir, recipe_append_file) + os.mkdir(os.path.join(self.testlayer_path, 'recipes-test', recipe_append_dir)) + feature = 'SUMMARY += "%s"\n' % i + ftools.write_file(recipe_append_path, feature) + expected_recipe_summary += ' %s' % i + + self.add_command_to_tearDown('rm -rf %s' % os.path.join(self.testlayer_path, 'recipes-test', + test_recipe + '_test_*')) + + test_recipe_summary_after = get_bb_var('SUMMARY', test_recipe) + self.assertEqual(expected_recipe_summary, test_recipe_summary_after) |