diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-11 21:54:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-12 11:46:26 +0100 |
commit | 0f6817f2a4552c82f2eb58602b28959a1792c0d4 (patch) | |
tree | 94cd3fc23774a421a204e9bb340c528949e1945f /meta/lib/oeqa | |
parent | f14e3f3a31aca23412ab73ac66d423ef6e019e0a (diff) | |
download | poky-0f6817f2a4552c82f2eb58602b28959a1792c0d4.tar.gz |
selftest/runtime_test: Use testexport in IMAGE_CLASSES, not globally
testexport doesn't make sense outside the scope of SDKs and images so
use via IMAGE_CLASSES instead of in the global scope.
(From OE-Core rev: ffa7556ae58dd4d806bf1881f5e208d16a64b833)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runtime_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index 70fff6c654..0e63e73b62 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py | |||
@@ -23,7 +23,7 @@ class TestExport(OESelftestTestCase): | |||
23 | Author: Mariano Lopez <mariano.lopez@intel.com> | 23 | Author: Mariano Lopez <mariano.lopez@intel.com> |
24 | """ | 24 | """ |
25 | 25 | ||
26 | features = 'INHERIT += "testexport"\n' | 26 | features = 'IMAGE_CLASSES += "testexport"\n' |
27 | # These aren't the actual IP addresses but testexport class needs something defined | 27 | # These aren't the actual IP addresses but testexport class needs something defined |
28 | features += 'TEST_SERVER_IP = "192.168.7.1"\n' | 28 | features += 'TEST_SERVER_IP = "192.168.7.1"\n' |
29 | features += 'TEST_TARGET_IP = "192.168.7.1"\n' | 29 | features += 'TEST_TARGET_IP = "192.168.7.1"\n' |
@@ -64,7 +64,7 @@ class TestExport(OESelftestTestCase): | |||
64 | Author: Mariano Lopez <mariano.lopez@intel.com> | 64 | Author: Mariano Lopez <mariano.lopez@intel.com> |
65 | """ | 65 | """ |
66 | 66 | ||
67 | features = 'INHERIT += "testexport"\n' | 67 | features = 'IMAGE_CLASSES += "testexport"\n' |
68 | # These aren't the actual IP addresses but testexport class needs something defined | 68 | # These aren't the actual IP addresses but testexport class needs something defined |
69 | features += 'TEST_SERVER_IP = "192.168.7.1"\n' | 69 | features += 'TEST_SERVER_IP = "192.168.7.1"\n' |
70 | features += 'TEST_TARGET_IP = "192.168.7.1"\n' | 70 | features += 'TEST_TARGET_IP = "192.168.7.1"\n' |