Lines Matching full:join
32 QEMU_CONFIGS_DIR = os.path.join(ABS_TOOL_PATH, 'qemu_configs')
66 print('Populating config with:\n$', ' '.join(command))
81 print('Building with:\n$', ' '.join(command))
118 kernel_path = os.path.join(build_dir, self._kernel_path)
123 '-append', ' '.join(params + [self._kernel_command_line]),
127 # Note: shlex.join() does what we want, but requires python 3.8+.
128 print('Running tests with:\n$', ' '.join(shlex.quote(arg) for arg in qemu_command))
148 linux_bin = os.path.join(build_dir, 'linux')
150 print('Running tests with:\n$', linux_bin, ' '.join(shlex.quote(arg) for arg in params))
158 return os.path.join(build_dir, KCONFIG_PATH)
161 return os.path.join(build_dir, KUNITCONFIG_PATH)
164 return os.path.join(build_dir, OLD_KUNITCONFIG_PATH)
178 path = os.path.join(path, KUNITCONFIG_PATH)
185 diff_str = '\n\n'.join(f'{a}\n vs from {path}\n{b}' for a, b in diff)
191 return os.path.join(build_dir, OUTFILE_PATH)
194 config_path = os.path.join(QEMU_CONFIGS_DIR, arch + '.py')
212 module_path = '.' + os.path.join(os.path.basename(QEMU_CONFIGS_DIR), os.path.basename(config_path))
253 kconfig = kunit_config.parse_from_string('\n'.join(kconfig_add))
275 'Missing: ' + ', '.join(str(e) for e in missing)
373 waiter.join()