mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
oeqa/selftest: fix test_force_task so it doesn't taint the entire build
Using -C sets a taint on the specified task, and m4-native is in the dependency chain for just about everything, which means that everything gets forced to rebuild. We don't need the influence of this test to extend outside of the test itself, so ensure that the taint gets cleared at the end of the test. (From OE-Core rev: 24b41a1e3f2496e38a6ae9c47dfe85887f3d7d6e) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5268d8ab1d
commit
93ba8e0f91
@@ -71,6 +71,7 @@ class BitbakeTests(oeSelfTest):
|
||||
@testcase(163)
|
||||
def test_force_task(self):
|
||||
bitbake('m4-native')
|
||||
self.add_command_to_tearDown('bitbake -c clean m4-native')
|
||||
result = bitbake('-C compile m4-native')
|
||||
look_for_tasks = ['do_compile', 'do_install', 'do_populate_sysroot']
|
||||
for task in look_for_tasks:
|
||||
|
||||
Reference in New Issue
Block a user