diff options
-rw-r--r-- | meta/lib/oeqa/selftest/context.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py index 0a7a9da72a..6cf1bef212 100644 --- a/meta/lib/oeqa/selftest/context.py +++ b/meta/lib/oeqa/selftest/context.py | |||
@@ -216,14 +216,14 @@ class OESelftestTestContextExecutor(OETestContextExecutor): | |||
216 | machines = [] | 216 | machines = [] |
217 | 217 | ||
218 | bbpath = self.tc_kwargs['init']['td']['BBPATH'].split(':') | 218 | bbpath = self.tc_kwargs['init']['td']['BBPATH'].split(':') |
219 | 219 | ||
220 | for path in bbpath: | 220 | for path in bbpath: |
221 | found_machines = glob.glob(os.path.join(path, 'conf', 'machine', '*.conf')) | 221 | found_machines = glob.glob(os.path.join(path, 'conf', 'machine', '*.conf')) |
222 | if found_machines: | 222 | if found_machines: |
223 | for i in found_machines: | 223 | for i in found_machines: |
224 | # eg: '/home/<user>/poky/meta-intel/conf/machine/intel-core2-32.conf' | 224 | # eg: '/home/<user>/poky/meta-intel/conf/machine/intel-core2-32.conf' |
225 | machines.append(os.path.splitext(os.path.basename(i))[0]) | 225 | machines.append(os.path.splitext(os.path.basename(i))[0]) |
226 | 226 | ||
227 | return machines | 227 | return machines |
228 | 228 | ||
229 | def _get_cases_paths(self, bbpath): | 229 | def _get_cases_paths(self, bbpath): |