diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-31 15:19:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-04 11:03:56 +0100 |
commit | 0892e449a5ec3f0bf2c9d2e8b08c005cd459f780 (patch) | |
tree | 1458274161f81e3a62ae51ed9639679a729cb23a | |
parent | 25bac865def42650c0c0323322158ba338e8b753 (diff) | |
download | poky-0892e449a5ec3f0bf2c9d2e8b08c005cd459f780.tar.gz |
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.
(From OE-Core rev: 13b82380abb273e6575b1e74870d3fe8249ebbc1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runtime_test.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index 376c3c5146..abd0723146 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): | |||
122 | self.skipTest('core-image-full-cmdline not buildable for poky-tiny') | 122 | self.skipTest('core-image-full-cmdline not buildable for poky-tiny') |
123 | 123 | ||
124 | features = 'INHERIT += "testimage"\n' | 124 | features = 'INHERIT += "testimage"\n' |
125 | features += 'IMAGE_INSTALL_append = " libssl"\n' | ||
125 | features += 'TEST_SUITES = "ping ssh selftest"\n' | 126 | features += 'TEST_SUITES = "ping ssh selftest"\n' |
126 | self.write_config(features) | 127 | self.write_config(features) |
127 | 128 | ||