summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/context.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 84878ea193..c521290327 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -11,6 +11,7 @@ from shutil import copyfile
11from random import choice 11from random import choice
12 12
13import oeqa 13import oeqa
14import oe
14 15
15from oeqa.core.context import OETestContext, OETestContextExecutor 16from oeqa.core.context import OETestContext, OETestContextExecutor
16from oeqa.core.exception import OEQAPreRun, OEQATestNotFound 17from oeqa.core.exception import OEQAPreRun, OEQATestNotFound
@@ -223,7 +224,7 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
223 configuration = {'TEST_TYPE': 'oeselftest', 224 configuration = {'TEST_TYPE': 'oeselftest',
224 'STARTTIME': args.test_start_time, 225 'STARTTIME': args.test_start_time,
225 'MACHINE': self.tc.td["MACHINE"], 226 'MACHINE': self.tc.td["MACHINE"],
226 'HOST_DISTRO': ('-'.join(platform.linux_distribution())).replace(' ', '-'), 227 'HOST_DISTRO': oe.lsb.distro_identifier().replace(' ', '-'),
227 'HOST_NAME': metadata['hostname'], 228 'HOST_NAME': metadata['hostname'],
228 'LAYERS': metadata['layers']} 229 'LAYERS': metadata['layers']}
229 return configuration 230 return configuration