diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-08-10 11:05:40 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-14 17:33:49 +0100 |
commit | 6456bec6ce3ad5f0e7a6f2b80fd73e3120cf8b40 (patch) | |
tree | ea2fc7d04a1abdcea4fbf5c50d3c6d87964907be /meta/lib/oeqa | |
parent | 9184b906a5504bff544039080af71bc9d64629f4 (diff) | |
download | poky-6456bec6ce3ad5f0e7a6f2b80fd73e3120cf8b40.tar.gz |
oeqa/buildgalculator.py: Add dependency on gtk+3
This helps in skipping this test on images which are not using gtk and
as per the gcalculator website it needs gtk+3 or gtk+2 and libglade as
the build first looks for gtk+3
(From OE-Core rev: 2cdb4b3697e02947352803a9db013d61b812c4fd)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/buildgalculator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildgalculator.py b/meta/lib/oeqa/runtime/cases/buildgalculator.py index 6dd1faee0a..e5cc3e2888 100644 --- a/meta/lib/oeqa/runtime/cases/buildgalculator.py +++ b/meta/lib/oeqa/runtime/cases/buildgalculator.py | |||
@@ -25,6 +25,7 @@ class GalculatorTest(OERuntimeTestCase): | |||
25 | @OEHasPackage(['gcc']) | 25 | @OEHasPackage(['gcc']) |
26 | @OEHasPackage(['make']) | 26 | @OEHasPackage(['make']) |
27 | @OEHasPackage(['autoconf']) | 27 | @OEHasPackage(['autoconf']) |
28 | @OEHasPackage(['gtk+3']) | ||
28 | def test_galculator(self): | 29 | def test_galculator(self): |
29 | self.project.download_archive() | 30 | self.project.download_archive() |
30 | self.project.run_configure() | 31 | self.project.run_configure() |