diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-27 11:02:43 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-27 11:03:31 +0000 |
commit | 11902d93e4dda6a3cb763a79a325631051e09851 (patch) | |
tree | d205178a3b471d4cba4f4a03754cfc14de564f03 /bitbake/lib | |
parent | cdca61ab03b1cc79f17b9618a03b12e53171783d (diff) | |
download | poky-11902d93e4dda6a3cb763a79a325631051e09851.tar.gz |
bitbake: tests/runqueue: Fix to match recent task migration fixes
(Bitbake rev: 35784582fdbb2092eddec094deb6ab9c87666b5e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/tests/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/runqueue.py b/bitbake/lib/bb/tests/runqueue.py index 5e6439156d..20c88ac3d5 100644 --- a/bitbake/lib/bb/tests/runqueue.py +++ b/bitbake/lib/bb/tests/runqueue.py | |||
@@ -255,7 +255,7 @@ class RunQueueTests(unittest.TestCase): | |||
255 | cmd = ["bitbake", "a1", "b1"] | 255 | cmd = ["bitbake", "a1", "b1"] |
256 | tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) | 256 | tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) |
257 | expected = ['a1:populate_sysroot', 'a1:package', 'a1:package_write_rpm_setscene', 'a1:packagedata_setscene', | 257 | expected = ['a1:populate_sysroot', 'a1:package', 'a1:package_write_rpm_setscene', 'a1:packagedata_setscene', |
258 | 'a1:package_write_ipk_setscene', 'a1:package_qa_setscene'] | 258 | 'a1:package_write_ipk_setscene', 'a1:package_qa_setscene', 'a1:build'] |
259 | self.assertEqual(set(tasks), set(expected)) | 259 | self.assertEqual(set(tasks), set(expected)) |
260 | 260 | ||
261 | self.shutdown(tempdir) | 261 | self.shutdown(tempdir) |