diff options
Diffstat (limited to 'bitbake/lib/bb/tests/data.py')
| -rw-r--r-- | bitbake/lib/bb/tests/data.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bitbake/lib/bb/tests/data.py b/bitbake/lib/bb/tests/data.py index db3e2010a9..3c511f214b 100644 --- a/bitbake/lib/bb/tests/data.py +++ b/bitbake/lib/bb/tests/data.py | |||
| @@ -394,6 +394,15 @@ class TestOverrides(unittest.TestCase): | |||
| 394 | self.d.setVar("OVERRIDES", "foo:bar:some_val") | 394 | self.d.setVar("OVERRIDES", "foo:bar:some_val") |
| 395 | self.assertEqual(self.d.getVar("TEST"), " testvalue5") | 395 | self.assertEqual(self.d.getVar("TEST"), " testvalue5") |
| 396 | 396 | ||
| 397 | # Test an override with _<numeric> in it based on a real world OE issue | ||
| 398 | def test_underscore_override(self): | ||
| 399 | self.d.setVar("TARGET_ARCH", "x86_64") | ||
| 400 | self.d.setVar("PN", "test-${TARGET_ARCH}") | ||
| 401 | self.d.setVar("VERSION", "1") | ||
| 402 | self.d.setVar("VERSION_pn-test-${TARGET_ARCH}", "2") | ||
| 403 | self.d.setVar("OVERRIDES", "pn-${PN}") | ||
| 404 | bb.data.expandKeys(self.d) | ||
| 405 | self.assertEqual(self.d.getVar("VERSION"), "2") | ||
| 397 | 406 | ||
| 398 | class TestKeyExpansion(unittest.TestCase): | 407 | class TestKeyExpansion(unittest.TestCase): |
| 399 | def setUp(self): | 408 | def setUp(self): |
