diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2023-08-23 09:10:21 +0300 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-10-13 04:31:05 -1000 |
commit | 0198d514d603284e86f639def17baefb316cb2a7 (patch) | |
tree | d6e9b6cb77f575548f00a200cf658dd1a9c17837 | |
parent | d61e137c1a7ff48c57cd4506411bdce940309abb (diff) | |
download | poky-0198d514d603284e86f639def17baefb316cb2a7.tar.gz |
oeqa selftest context.py: whitespace fix
(From OE-Core rev: fa4204c34efeda543a108c942cd50a6d6322600e)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
(cherry picked from commit 8aed3ca405cb3cc5d346eb8da8b3307d93f75d5b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-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): |