[oe-commits] [openembedded-core] 06/07: oeqa/selftest/runtime_test: Fix runtime_test.TestImage.test_testimage_install after ssl changes

git at git.openembedded.org git at git.openembedded.org
Fri Aug 31 14:35:30 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 6626ff88fd88acbc89de2551c429010bd03ab002
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Fri Aug 31 15:19:50 2018 +0100

    oeqa/selftest/runtime_test: Fix runtime_test.TestImage.test_testimage_install after ssl changes
    
    The test installs socat and expects it to run but assumes all its dependencies
    are already installed (which includes libssl).
    
    Recent changes mean this isn't the case so force libssl into the image in advance
    to work around this issue for now.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/selftest/cases/runtime_test.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 376c3c5..abd0723 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -122,6 +122,7 @@ class TestImage(OESelftestTestCase):
             self.skipTest('core-image-full-cmdline not buildable for poky-tiny')
 
         features = 'INHERIT += "testimage"\n'
+        features += 'IMAGE_INSTALL_append = " libssl"\n'
         features += 'TEST_SUITES = "ping ssh selftest"\n'
         self.write_config(features)
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list