| /Renode-v1.15.3-c57714d/tests/ |
| D | robot_tests_provider.py | 50 default=os.path.join(this_path, '../output/bin'), 82 help=" ".join([ 110 default=os.path.join(this_path, '../lib/resources/styles/robot.css'), 153 help=" ".join([ 171 options.css_file = os.path.join(this_path, options.css_file) 267 after_timeout_message_suffix = ' '.join([ 278 retry_suite_regex = re.compile(r"|".join(( 304 return os.path.join( 350 remote_server_binary = os.path.join(self.remote_server_directory, remote_server_name) 425 pid_file_path = os.path.join(self.remote_server_directory, pid_filename) [all …]
|
| D | nunit_tests_provider.py | 24 nunit_path = os.path.join(this_path, './../lib/resources/tools/nunit3/nunit3-console.exe') 79 flat_cmdline = ' '.join(proc.info['cmdline'] or []) 91 output_file = os.path.join(options.results_directory, 'results-{}.xml'.format(project_file)) 134 args.append(' & '.join('({})'.format(x) for x in where_conditions)) 136 … args.append('--where= ' + ' and '.join(['({})'.format(x) for x in where_conditions])) 179 test_files = glob.glob(os.path.join(path, files_pattern))
|
| D | tests_engine.py | 27 filename = os.path.join(self._root, config['path']) 32 lst[idx] = os.path.join(prefix, lst[idx]) 111 default=os.path.join(this_path, 'tests'), 246 …options.remote_server_full_directory = os.path.join(this_path, options.remote_server_full_director… 248 …options.remote_server_full_directory = os.path.join(options.remote_server_directory_prefix, option… 252 with open(os.path.join(options.remote_server_full_directory, "build_type"), "r") as f: 521 pool.join()
|
| D | robot_output_formatter_verbose.py | 20 …{}:{})".format(attrs["type"], attrs["elapsedtime"], attrs["kwname"], ' '.join(attrs["args"]), att…
|
| D | run_tests.py | 13 requirements = os.path.join(path, requirements)
|
| D | robot_output_formatter.py | 32 + line_prefix.join([x.encode() for x in text.split("\n")]) \
|
| D | helper.py | 52 files.append(os.path.join(root, filename))
|
| /Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/ |
| D | cs_exporter.py | 89 body = ast.Node.join( 113 args = ast.Node.join([offset_arg, value_arg]), 114 body = ast.Node.join( 149 fields = ast.Node.join(chain(reg_instances, regarray_fields.values())), 156 methods = ast.Node.join([ 161 body = ast.Node.join([ 174 ast.MethodDefinition(name='IPeripheral.Reset', body = ast.Node.join([ 181 classes = ast.Node.join(chain( 212 return '\n'.join(line.rstrip() for line in code.splitlines()) + '\n' 327 fields = ast.Node.join(map(make_var_decl, register.fields())), [all …]
|
| D | memory.py | 112 return ast.Node.join( 152 return ast.Node.join( 180 get = ast.Node.join([ 196 fields = ast.Node.join([ 200 properties = ast.Node.join( 210 body = ast.Node.join([ 233 properties = ast.Node.join([ 244 get = ast.Node.join([ 270 methods = ast.Node.join([ 296 args = ast.Node.join([ [all …]
|
| /Renode-v1.15.3-c57714d/tools/execution_tracer/execution_tracer/ |
| D | coverview_integration.py | 32 archive.writestr('coverage.info', '\n'.join(line for line in report)) 53 with open(os.path.join(tmp_dir_name, 'sources.txt'), 'w') as sources:
|
| D | execution_tracer_reader.py | 231 output += "\n" + "\n".join(additional_data) 354 …os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir, os.pardir, "lib", "resources"… 360 lib_path = os.path.join(search_path, lib_name) 366 …uld not find ' + lib_name + ' in any of the following locations: ' + ', '.join([os.path.abspath(pa…
|
| D | dwarf.py | 132 absolute_path = os.path.join(directory, file_name) 190 file_full_name = os.path.join(file_path, file_name) 275 …print('Addresses in trace not matching any sources:', ', '.join(f'0x{addr:X}' for addr in sorted(u…
|
| /Renode-v1.15.3-c57714d/tools/metrics_analyzer/metrics_visualizer/assets/ |
| D | helpers.py | 5 output_path = os.path.join(options.output, fileName)
|
| /Renode-v1.15.3-c57714d/tools/sel4_extensions/ |
| D | gdbscript.py | 38 sys.path.append(os.path.join(SOURCE_DIR, 'projects', 'capdl', 'python-capdl-tool')) 83 print('\n'.join(get_threads())) 384 DEFAULT_BINARY = os.path.join(build_dir, 'kernel', 'kernel.elf') 387 images_path = os.path.join(build_dir, '*.instance.bin') 393 BINARIES['rootserver'] = os.path.join(build_dir, 'capdl-loader') 401 cdl_pickle = os.path.join(build_dir, 'object.pickle')
|
| /Renode-v1.15.3-c57714d/tests/platforms/ |
| D | echo-i2c-peripheral.py | 29 self.last_written = '"{}"'.format(''.join(map(chr, data)))
|
| D | Zedboard.robot | 215 …${raw}= Evaluate ' '.join(r'0x{:02x}'.format(chr) for chr in bytes("${s…
|
| /Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/csharp/ |
| D | ast.py | 241 def join(nodes: Optional[Iterable['Node']]) -> 'Node': member in Node 680 [f'{prefix}{self.name}(' + ', '.join(str(arg) for arg in self.args.iterate()) + ')'], 750 self.arguments = Node.join(arguments) 761 '(' + ', '.join(str(arg) for arg in self.arguments.iterate()) + ')'] 855 self.namespaces = Node.join(namespaces) 879 self.args = Node.join(args) 888 [f'new {self.type}(' + ', '.join(str(arg) for arg in self.args.iterate()) + ')']
|
| /Renode-v1.15.3-c57714d/tools/gdb_compare/ |
| D | gdb_compare.py | 331 …ambda _: True, lambda regs: ["printf \"" + ": 0x%x\\n".join(regs) + ": 0x%x\\n\",$" + ",$".join(… 372 …print("WARNING: " + ", ".join(not_found) + " register[s] not found when executing 'info registers … 550 previous_output = "\n".join(output_ren[1:])
|
| /Renode-v1.15.3-c57714d/tools/guest_cache/src/ |
| D | cache.py | 166 …self.printd(' selecting a line to invalidate:\n', '\n'.join(f'{index}: {line}' for index, line in …
|
| /Renode-v1.15.3-c57714d/tests/unit-tests/ |
| D | llvm-asm-disasm.robot | 67 [Return] ${{"".join($out)}} 133 ${hex_bytes}= Evaluate "".join("%02x"%b for b in ${bytes})
|
| D | uart-tester.robot | 172 ${bytes_re}= Evaluate "".join(rf"\\x{b:02x}" for b in $bytes)
|
| /Renode-v1.15.3-c57714d/tools/tlib_helper/ |
| D | gdbscript.py | 446 model += ''.join(extensions)
|