aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/tests
diff options
context:
space:
mode:
authorJoshua Lock <joshua.g.lock@intel.com>2016-11-25 15:28:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-30 15:47:46 +0000
commitc19baa8c19ea8ab9b9b64fd30298d8764c6fd2cd (patch)
treec1ff1e490684eb9299dee268564aa08e0343dd57 /lib/bb/tests
parent3b45c479de8640f92dd1d9f147b02e1eecfaadc8 (diff)
downloadbitbake-contrib-c19baa8c19ea8ab9b9b64fd30298d8764c6fd2cd.tar.gz
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\) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/tests')
-rw-r--r--lib/bb/tests/parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/tests/parse.py b/lib/bb/tests/parse.py
index 86e86ed71..ab6ca9031 100644
--- a/lib/bb/tests/parse.py
+++ b/lib/bb/tests/parse.py
@@ -81,7 +81,7 @@ unset B[flag]
f = self.parsehelper(self.unsettest)
d = bb.parse.handle(f.name, self.d)['']
self.assertEqual(d.getVar("A"), None)
- self.assertEqual(d.getVarFlag("A","flag", True), None)
+ self.assertEqual(d.getVarFlag("A","flag"), None)
self.assertEqual(d.getVar("B"), "2")