diff options
author | Maxin B. John <maxin.john@intel.com> | 2016-07-01 14:13:10 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-10 14:12:17 +0100 |
commit | 78523811fbfd18beca244865e64bcec322bdaa6a (patch) | |
tree | 4aeb27feadea46f32a826fb876002791fddfda0d /meta/lib/oeqa | |
parent | e7ddecce1bc431784e2456ef96565840a96f0bd0 (diff) | |
download | poky-78523811fbfd18beca244865e64bcec322bdaa6a.tar.gz |
buildoptions.py: remove directfb image build test
removing this test since we move directfb out of oe-core
(From OE-Core rev: 2d8fda36ecfa1945f22b7139a2febd12ec59272b)
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/buildoptions.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py index b6151d7d82..4d0192115b 100644 --- a/meta/lib/oeqa/selftest/buildoptions.py +++ b/meta/lib/oeqa/selftest/buildoptions.py | |||
@@ -199,19 +199,6 @@ class BuildhistoryTests(BuildhistoryBase): | |||
199 | self.run_buildhistory_operation(target, target_config="PR = \"r1\"", change_bh_location=True) | 199 | self.run_buildhistory_operation(target, target_config="PR = \"r1\"", change_bh_location=True) |
200 | self.run_buildhistory_operation(target, target_config="PR = \"r0\"", change_bh_location=False, expect_error=True, error_regex=error) | 200 | self.run_buildhistory_operation(target, target_config="PR = \"r0\"", change_bh_location=False, expect_error=True, error_regex=error) |
201 | 201 | ||
202 | |||
203 | class BuildImagesTest(oeSelfTest): | ||
204 | @testcase(563) | ||
205 | def test_directfb(self): | ||
206 | """ | ||
207 | This method is used to test the build of directfb image for arm arch. | ||
208 | In essence we build a coreimagedirectfb and test the exitcode of bitbake that in case of success is 0. | ||
209 | """ | ||
210 | self.add_command_to_tearDown('cleanup-workdir') | ||
211 | self.write_config("DISTRO_FEATURES_remove = \"x11\"\nDISTRO_FEATURES_append = \" directfb\"\nMACHINE ??= \"qemuarm\"") | ||
212 | res = bitbake("core-image-directfb", ignore_status=True) | ||
213 | self.assertEqual(res.status, 0, "\ncoreimagedirectfb failed to build. Please check logs for further details.\nbitbake output %s" % res.output) | ||
214 | |||
215 | class ArchiverTest(oeSelfTest): | 202 | class ArchiverTest(oeSelfTest): |
216 | @testcase(926) | 203 | @testcase(926) |
217 | def test_arch_work_dir_and_export_source(self): | 204 | def test_arch_work_dir_and_export_source(self): |