diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-11-25 15:28:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-30 15:48:09 +0000 |
commit | ddaac5e4e3ebe71cb279a33a6585b3e8a8790e55 (patch) | |
tree | 5dc9c0d3e1da1edacad1e6b8748c4db22026f011 /bitbake/lib/bb/tests/parse.py | |
parent | 1fce7ecbbb004a5ad82da3eef79cfd52b276708d (diff) | |
download | poky-ddaac5e4e3ebe71cb279a33a6585b3e8a8790e55.tar.gz |
bitbake: bitbake: remove True option to getVarFlag calls
getVarFlag() now defaults to expanding by default, thus remove the
True option from getVarFlag() calls with a regex search and
replace.
Search made with the following regex:
getVarFlag ?\(( ?[^,()]*, ?[^,()]*), True\)
(Bitbake rev: c19baa8c19ea8ab9b9b64fd30298d8764c6fd2cd)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests/parse.py')
-rw-r--r-- | bitbake/lib/bb/tests/parse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/parse.py b/bitbake/lib/bb/tests/parse.py index 86e86ed711..ab6ca90317 100644 --- a/bitbake/lib/bb/tests/parse.py +++ b/bitbake/lib/bb/tests/parse.py | |||
@@ -81,7 +81,7 @@ unset B[flag] | |||
81 | f = self.parsehelper(self.unsettest) | 81 | f = self.parsehelper(self.unsettest) |
82 | d = bb.parse.handle(f.name, self.d)[''] | 82 | d = bb.parse.handle(f.name, self.d)[''] |
83 | self.assertEqual(d.getVar("A"), None) | 83 | self.assertEqual(d.getVar("A"), None) |
84 | self.assertEqual(d.getVarFlag("A","flag", True), 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 | 87 | ||