]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/selftest/runtime_test: Fix runtime_test.TestImage.test_testimage_install after...
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 31 Aug 2018 14:19:50 +0000 (15:19 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 4 Sep 2018 10:03:31 +0000 (11:03 +0100)
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@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/runtime_test.py

index 376c3c5146019cf6ebc2ac968a3dd626f0335949..abd0723146f48b79bee5075732cf1d79b9497e22 100644 (file)
@@ -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)