summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tests
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-17 22:46:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-18 12:16:19 +0100
commit9881c532c8b1250a6851da2d2290dadc7ae6ef69 (patch)
tree74339b4706ad5d1068f23865395381fe771440d0 /bitbake/lib/bb/tests
parentd64c2ad24d9e2972db23561df3c22adbb613c2a3 (diff)
downloadpoky-9881c532c8b1250a6851da2d2290dadc7ae6ef69.tar.gz
bitbake: runqueue: Fix non setscene tasks targets being lost
If you specify both setscene and non-setscene tasks on the commandline, the non-setscene tasks could be missed, e.g. "bitbake X:do_patch X:do_populate_sysroot" and do_patch would fail to run. Fix the problem in runqueue and add a testcase. (Bitbake rev: 75292fdec5d9c0b5b3c554c4b7474a63656f7e12) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests')
-rw-r--r--bitbake/lib/bb/tests/runqueue.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/bitbake/lib/bb/tests/runqueue.py b/bitbake/lib/bb/tests/runqueue.py
index f0cea6483f..f22ad4bd81 100644
--- a/bitbake/lib/bb/tests/runqueue.py
+++ b/bitbake/lib/bb/tests/runqueue.py
@@ -97,6 +97,15 @@ class RunQueueTests(unittest.TestCase):
97 expected = ['a1:fetch', 'a1:unpack', 'a1:patch'] 97 expected = ['a1:fetch', 'a1:unpack', 'a1:patch']
98 self.assertEqual(set(tasks), set(expected)) 98 self.assertEqual(set(tasks), set(expected))
99 99
100 def test_mix_covered_notcovered(self):
101 with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir:
102 cmd = ["bitbake", "a1:do_patch", "a1:do_populate_sysroot"]
103 sstatevalid = self.a1_sstatevalid
104 tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid)
105 expected = ['a1:fetch', 'a1:unpack', 'a1:patch', 'a1:populate_sysroot_setscene']
106 self.assertEqual(set(tasks), set(expected))
107
108
100 # Test targets with intermediate setscene tasks alongside a target with no intermediate setscene tasks 109 # Test targets with intermediate setscene tasks alongside a target with no intermediate setscene tasks
101 def test_mixed_direct_tasks_setscene_tasks(self): 110 def test_mixed_direct_tasks_setscene_tasks(self):
102 with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: 111 with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: