]> code.ossystems Code Review - openembedded-core.git/commitdiff
buildoptions.py: remove directfb image build test
authorMaxin B. John <maxin.john@intel.com>
Fri, 1 Jul 2016 11:13:10 +0000 (14:13 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 10 Jul 2016 13:12:07 +0000 (14:12 +0100)
removing this test since we move directfb out of oe-core

Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/selftest/buildoptions.py

index b6151d7d82e0914cf79cdbe17e8a4f07569cbf8f..4d0192115b9fbac117662e4f53c9e2702cab92af 100644 (file)
@@ -199,19 +199,6 @@ class BuildhistoryTests(BuildhistoryBase):
         self.run_buildhistory_operation(target, target_config="PR = \"r1\"", change_bh_location=True)
         self.run_buildhistory_operation(target, target_config="PR = \"r0\"", change_bh_location=False, expect_error=True, error_regex=error)
 
-
-class BuildImagesTest(oeSelfTest):
-    @testcase(563)
-    def test_directfb(self):
-        """
-        This method is used to test the build of directfb image for arm arch.
-        In essence we build a coreimagedirectfb and test the exitcode of bitbake that in case of success is 0.
-        """
-        self.add_command_to_tearDown('cleanup-workdir')
-        self.write_config("DISTRO_FEATURES_remove = \"x11\"\nDISTRO_FEATURES_append = \" directfb\"\nMACHINE ??= \"qemuarm\"")
-        res = bitbake("core-image-directfb", ignore_status=True)
-        self.assertEqual(res.status, 0, "\ncoreimagedirectfb failed to build. Please check logs for further details.\nbitbake output %s" % res.output)
-
 class ArchiverTest(oeSelfTest):
     @testcase(926)
     def test_arch_work_dir_and_export_source(self):