diff options
author | Ross Burton <ross.burton@intel.com> | 2015-02-02 15:09:24 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-07-26 10:13:57 -0300 |
commit | 5db938017dc47610f4973cc55513132b58ae7a18 (patch) | |
tree | af5c2092ef0dee96f16e5b2f4dad78587157d27e | |
parent | 080d822551075b6579cf2dd611b78c9993d35309 (diff) | |
download | tizen-distro-5db938017dc47610f4973cc55513132b58ae7a18.tar.gz tizen-distro-5db938017dc47610f4973cc55513132b58ae7a18.tar.bz2 tizen-distro-5db938017dc47610f4973cc55513132b58ae7a18.zip |
bitbake: bitbake: tests/data: add test for incorrect remove behaviour
The _remove operator isn't working correctly when used with a variable that
expands to several items, so add a test case to exercise this path.
(Bitbake rev: cb2a62a5fbffb358528a85b46c1fc6383286cb9d)
(Bitbake rev: ed950f95fc80f069e800e9c6e785641f307e6512)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r-- | bitbake/lib/bb/tests/data.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/bb/tests/data.py b/bitbake/lib/bb/tests/data.py index 9b09ff4c61..23a5e5fd9c 100644 --- a/bitbake/lib/bb/tests/data.py +++ b/bitbake/lib/bb/tests/data.py @@ -266,6 +266,13 @@ class TestConcatOverride(unittest.TestCase): bb.data.update_data(self.d) self.assertEqual(self.d.getVar("TEST", True), "Y") + def test_remove_expansion_items(self): + self.d.setVar("TEST", "A B C D") + self.d.setVar("BAR", "B D") + self.d.setVar("TEST_remove", "${BAR}") + bb.data.update_data(self.d) + self.assertEqual(self.d.getVar("TEST", True), "A C") + class TestOverrides(unittest.TestCase): def setUp(self): self.d = bb.data.init() |