diff options
| -rw-r--r-- | bitbake/lib/bb/parse/parse_py/ConfHandler.py | 2 | ||||
| -rw-r--r-- | bitbake/lib/bb/tests/parse.py | 23 |
2 files changed, 23 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py index f7d0cf74ab..bf7e9859ac 100644 --- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py +++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py | |||
| @@ -32,7 +32,7 @@ from bb.parse import ParseError, resolve_file, ast, logger, handle | |||
| 32 | 32 | ||
| 33 | __config_regexp__ = re.compile( r""" | 33 | __config_regexp__ = re.compile( r""" |
| 34 | ^ | 34 | ^ |
| 35 | (?P<exp>export\s*)? | 35 | (?P<exp>export\s+)? |
| 36 | (?P<var>[a-zA-Z0-9\-_+.${}/~]+?) | 36 | (?P<var>[a-zA-Z0-9\-_+.${}/~]+?) |
| 37 | (\[(?P<flag>[a-zA-Z0-9\-_+.]+)\])? | 37 | (\[(?P<flag>[a-zA-Z0-9\-_+.]+)\])? |
| 38 | 38 | ||
diff --git a/bitbake/lib/bb/tests/parse.py b/bitbake/lib/bb/tests/parse.py index ab6ca90317..8f16ba4f4c 100644 --- a/bitbake/lib/bb/tests/parse.py +++ b/bitbake/lib/bb/tests/parse.py | |||
| @@ -83,7 +83,28 @@ unset B[flag] | |||
| 83 | self.assertEqual(d.getVar("A"), None) | 83 | self.assertEqual(d.getVar("A"), None) |
| 84 | self.assertEqual(d.getVarFlag("A","flag"), None) | 84 | self.assertEqual(d.getVarFlag("A","flag"), None) |
| 85 | self.assertEqual(d.getVar("B"), "2") | 85 | self.assertEqual(d.getVar("B"), "2") |
| 86 | 86 | ||
| 87 | exporttest = """ | ||
| 88 | A = "a" | ||
| 89 | export B = "b" | ||
| 90 | export C | ||
| 91 | exportD = "d" | ||
| 92 | """ | ||
| 93 | |||
| 94 | def test_parse_exports(self): | ||
| 95 | f = self.parsehelper(self.exporttest) | ||
| 96 | d = bb.parse.handle(f.name, self.d)[''] | ||
| 97 | self.assertEqual(d.getVar("A"), "a") | ||
| 98 | self.assertIsNone(d.getVarFlag("A", "export")) | ||
| 99 | self.assertEqual(d.getVar("B"), "b") | ||
| 100 | self.assertEqual(d.getVarFlag("B", "export"), 1) | ||
| 101 | self.assertIsNone(d.getVar("C")) | ||
| 102 | self.assertEqual(d.getVarFlag("C", "export"), 1) | ||
| 103 | self.assertIsNone(d.getVar("D")) | ||
| 104 | self.assertIsNone(d.getVarFlag("D", "export")) | ||
| 105 | self.assertEqual(d.getVar("exportD"), "d") | ||
| 106 | self.assertIsNone(d.getVarFlag("exportD", "export")) | ||
| 107 | |||
| 87 | 108 | ||
| 88 | overridetest = """ | 109 | overridetest = """ |
| 89 | RRECOMMENDS_${PN} = "a" | 110 | RRECOMMENDS_${PN} = "a" |
