Lines Matching full:path
25 ['--short-build-path', '-k'],
26 '--short-build-path requires Ninja to be enabled'
137 'short build path without ninja',
163 return which_dict['path'][which_dict['exist']] \
164 if which_dict['path'][which_dict['exist']] \
165 else f'dummy/path/{name}'
167 return f'dummy/path/{name}'
173 which_dict['path'] = {name: shutil.which(name) \
248 assert os.path.join(zephyr_base, 'tests') in options.testsuite_root
249 assert os.path.join(zephyr_base, 'samples') in options.testsuite_root
266 os.path.join('dummy', 'path', "tests"),
267 os.path.join('dummy', 'path', "samples")
275 os.path.join('dummy', 'path', "tests"),
276 os.path.join('dummy', 'path', "samples")
287 os.path.join('dummy', 'path', "tests"),
288 os.path.join('dummy', 'path', "samples")
296 os.path.join('dummy', 'path', "tests"),
297 os.path.join('dummy', 'path', "samples")
315 original_abspath = os.path.abspath
317 def mocked_abspath(path): argument
318 if path == 'dummy_abspath':
320 elif isinstance(path, mock.Mock):
323 return original_abspath(path)
325 with mock.patch('os.path.abspath', side_effect=mocked_abspath):
342 original_abspath = os.path.abspath
344 def mocked_abspath(path): argument
345 if path == 'dummy_abspath':
347 elif isinstance(path, mock.Mock):
350 return original_abspath(path)
352 with mock.patch('os.path.abspath', side_effect=mocked_abspath):
446 original_abspath = os.path.abspath
448 def mocked_abspath(path): argument
449 if path == 'dummy_abspath':
451 elif isinstance(path, mock.Mock):
454 return original_abspath(path)
456 with mock.patch('os.path.abspath', side_effect=mocked_abspath):
473 'Unable to find `cmake` in path',
480 'Finished running dummy/script/path',
483 'msg': 'Finished running dummy/script/path',
491 'CMake script failure: dummy/script/path',
518 return 'dummy/cmake/path' if find_cmake else None
529 args = ['dummy/script/path', 'var1=val1']
537 assert 'Running cmake script dummy/script/path' in caplog.text
574 original_abspath = os.path.abspath
576 def mocked_abspath(path): argument
577 if path == 'dummy_abspath':
579 elif isinstance(path, mock.Mock):
582 return original_abspath(path)
584 with mock.patch('os.path.abspath', side_effect=mocked_abspath):