diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 11:52:58 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-29 23:21:24 +0100 |
| commit | d41af446febd516f14f26db53e6572d9eae35b1e (patch) | |
| tree | 2cf1e494d141b39aa0abbf4696d043288807dc17 /bitbake/lib/bb/tests/codeparser.py | |
| parent | 261da52339fba3be8f811f2745af0bee8963c2fa (diff) | |
| download | poky-d41af446febd516f14f26db53e6572d9eae35b1e.tar.gz | |
bitbake: data_smart: Allow colon in variable expansion regex
Now that ":" is a valid character in variable key names, it needs to be
allowed by the variable expansion code too, to match.
(Bitbake rev: 019251649a38754d5877759d13b664e28dea77de)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests/codeparser.py')
| -rw-r--r-- | bitbake/lib/bb/tests/codeparser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tests/codeparser.py b/bitbake/lib/bb/tests/codeparser.py index 826a2d2f6d..f485204791 100644 --- a/bitbake/lib/bb/tests/codeparser.py +++ b/bitbake/lib/bb/tests/codeparser.py | |||
| @@ -111,9 +111,9 @@ ${D}${libdir}/pkgconfig/*.pc | |||
| 111 | self.assertExecs(set(["sed"])) | 111 | self.assertExecs(set(["sed"])) |
| 112 | 112 | ||
| 113 | def test_parameter_expansion_modifiers(self): | 113 | def test_parameter_expansion_modifiers(self): |
| 114 | # - and + are also valid modifiers for parameter expansion, but are | 114 | # -,+ and : are also valid modifiers for parameter expansion, but are |
| 115 | # valid characters in bitbake variable names, so are not included here | 115 | # valid characters in bitbake variable names, so are not included here |
| 116 | for i in ('=', ':-', ':=', '?', ':?', ':+', '#', '%', '##', '%%'): | 116 | for i in ('=', '?', '#', '%', '##', '%%'): |
| 117 | name = "foo%sbar" % i | 117 | name = "foo%sbar" % i |
| 118 | self.parseExpression("${%s}" % name) | 118 | self.parseExpression("${%s}" % name) |
| 119 | self.assertNotIn(name, self.references) | 119 | self.assertNotIn(name, self.references) |
