summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/buildsudoku.py
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-06-15 12:01:23 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-23 14:26:14 +0100
commit675843d540f30058269789b2c6808a206ab04a04 (patch)
tree85383a91e26ddebb9dc3bcd8b4c63d47dc3bf5c5 /meta/lib/oeqa/sdk/buildsudoku.py
parentc65cf8ede2116ef1fa3ddeb617e7c39caacff941 (diff)
downloadpoky-675843d540f30058269789b2c6808a206ab04a04.tar.gz
oeqa: fix hasPackage, add hasPackageMatch
hasPackage() was looking for the string provided as an RE substring in the manifest, which resulted in a large number of false positives (i.e. libgtkfoo would match "gtk+"). Rewrite the manifest loader to parse the files into a proper data structure, change hasPackage to do full string matches, and add hasPackageMatch which does RE substring matches. (From OE-Core rev: b9409863af71899e02275439949e3f4cdfaf2d0f) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdk/buildsudoku.py')
-rw-r--r--meta/lib/oeqa/sdk/buildsudoku.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/buildsudoku.py b/meta/lib/oeqa/sdk/buildsudoku.py
index dea77c6599..5abbbb867f 100644
--- a/meta/lib/oeqa/sdk/buildsudoku.py
+++ b/meta/lib/oeqa/sdk/buildsudoku.py
@@ -3,7 +3,7 @@ from oeqa.utils.decorators import *
3from oeqa.utils.targetbuild import SDKBuildProject 3from oeqa.utils.targetbuild import SDKBuildProject
4 4
5def setUpModule(): 5def setUpModule():
6 if not oeSDKTest.hasPackage("gtk\+"): 6 if not oeSDKTest.hasPackage("gtk+"):
7 skipModule("Image doesn't have gtk+ in manifest") 7 skipModule("Image doesn't have gtk+ in manifest")
8 8
9class SudokuTest(oeSDKTest): 9class SudokuTest(oeSDKTest):