summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikko Rapeli <mikko.rapeli@linaro.org>2023-08-23 09:10:21 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-07 14:36:30 +0100
commit72d34fa0ab0d3e068429b6c32bdab6ed07deb3b9 (patch)
tree6c57ff95b7f7f106516e96f234942fe167f0929f
parente2cf72a8c15f7bdff168b52e6dd59279dc334116 (diff)
downloadpoky-72d34fa0ab0d3e068429b6c32bdab6ed07deb3b9.tar.gz
oeqa selftest context.py: whitespace fix
(From OE-Core rev: 8aed3ca405cb3cc5d346eb8da8b3307d93f75d5b) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index f2a5ba792f..4b33245758 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -226,14 +226,14 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
226 machines = [] 226 machines = []
227 227
228 bbpath = self.tc_kwargs['init']['td']['BBPATH'].split(':') 228 bbpath = self.tc_kwargs['init']['td']['BBPATH'].split(':')
229 229
230 for path in bbpath: 230 for path in bbpath:
231 found_machines = glob.glob(os.path.join(path, 'conf', 'machine', '*.conf')) 231 found_machines = glob.glob(os.path.join(path, 'conf', 'machine', '*.conf'))
232 if found_machines: 232 if found_machines:
233 for i in found_machines: 233 for i in found_machines:
234 # eg: '/home/<user>/poky/meta-intel/conf/machine/intel-core2-32.conf' 234 # eg: '/home/<user>/poky/meta-intel/conf/machine/intel-core2-32.conf'
235 machines.append(os.path.splitext(os.path.basename(i))[0]) 235 machines.append(os.path.splitext(os.path.basename(i))[0])
236 236
237 return machines 237 return machines
238 238
239 def _get_cases_paths(self, bbpath): 239 def _get_cases_paths(self, bbpath):