/Renode-v1.15.3-c57714d/ |
D | .gitmodules | 2 path = src/Infrastructure 5 path = lib/termsharp 8 path = lib/FdtSharp 11 path = lib/Packet.Net 14 path = lib/AntShell 17 path = lib/ELFSharp 20 path = lib/Migrant 23 path = lib/cctask 26 path = lib/options-parser 29 path = lib/CxxDemangler [all …]
|
/Renode-v1.15.3-c57714d/tests/ |
D | robot_tests_provider.py | 27 this_path = os.path.abspath(os.path.dirname(__file__)) 50 default=os.path.join(this_path, '../output/bin'), 110 default=os.path.join(this_path, '../lib/resources/styles/robot.css'), 170 if not os.path.isabs(options.css_file): 171 options.css_file = os.path.join(this_path, options.css_file) 173 if not os.path.isfile(options.css_file): 287 def __init__(self, path): argument 288 self.path = path 304 return os.path.join( 316 suite = suiteBuilder.build(self.path) [all …]
|
D | nunit_tests_provider.py | 16 this_path = os.path.abspath(os.path.dirname(__file__)) 24 nunit_path = os.path.join(this_path, './../lib/resources/tools/nunit3/nunit3-console.exe') 26 def __init__(self, path): argument 28 self.path = path 55 print("Building {0}".format(self.path)) 67 result = subprocess.call([self.builder, *params, self.path]) 69 print("Building project `{}` failed with error code: {}".format(self.path, result)) 88 print('Running ' + self.path) 90 project_file = os.path.split(self.path)[1] 91 output_file = os.path.join(options.results_directory, 'results-{}.xml'.format(project_file)) [all …]
|
D | run_tests.py | 12 path = os.path.dirname(os.path.realpath(__file__)) variable 13 requirements = os.path.join(path, requirements) 45 …install required dependencies with `pip install -r {}`".format(str(e), os.path.abspath(requirement…
|
D | tests_engine.py | 12 this_path = os.path.abspath(os.path.dirname(__file__)) 21 self._root = os.path.split(stream.name)[0] 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'), 112 type=os.path.abspath, 200 def parse_tests_file(path): argument 214 with open(path) as f: 245 if not os.path.isabs(options.remote_server_full_directory): 246 …options.remote_server_full_directory = os.path.join(this_path, options.remote_server_full_director… [all …]
|
D | helper.py | 44 if excludes and os.path.basename(root) in excludes: 52 files.append(os.path.join(root, filename))
|
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/ |
D | PreLexer.cs | 17 public static IEnumerable<string> Process(string source, string path = "") in Process() argument 21 var lineSource = HandleMultilineStrings(sourceInLines, path); in Process() 26 var enumerator = HandleComments(lineSource, path).GetEnumerator(); in Process() 44 var oldIndentLevel = GetIndentLevel(oldLine, lineNo, path); in Process() 48 …on(ParsingError.WrongIndent, lineNo, 0, oldLine, "First line with text cannot be indented.", path); in Process() 84 var newIndentLevel = GetIndentLevel(newLine, lineNo, path); in Process() 117 … private static IEnumerable<string> HandleComments(IEnumerable<string> lineSource, string path) in HandleComments() argument 137 …x, originalLine, "Multiline comment in indent mode can only finish at the end of the line.", path); in HandleComments() 167 …ingError.SyntaxError, lineNo, originalLine.Length - 1, originalLine, "Unterminated string.", path); in HandleComments() 193 path); in HandleComments() [all …]
|
D | UsingsGraph.cs | 144 …public GraphNode(string path, string source, string prefix, Description parsedDescription, GraphNo… in GraphNode() argument 146 Path = path; in GraphNode() 150 GraphId = MakeGraphId(parent?.GraphId ?? "", prefix, path); in GraphNode() 151 FileId = prefix + path; in GraphNode() 156 public static string MakeGraphId(string parentGraphId, string prefix, string path) in MakeGraphId() argument 161 return parentGraphId + prefix + path; in MakeGraphId()
|
/Renode-v1.15.3-c57714d/tools/execution_tracer/execution_tracer/ |
D | coverview_integration.py | 15 def create_coverview_archive(path: TextIO, report: Iterable[str], code_files: List[IO], coverview_d… 27 if os.path.splitext(path.name)[1] != '.zip': 30 with zipfile.ZipFile(path.name, 'w') as archive: 53 with open(os.path.join(tmp_dir_name, 'sources.txt'), 'w') as sources:
|
D | execution_tracer_reader.py | 354 …os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir, os.pardir, "lib", "resources"… 355 os.path.dirname(os.path.realpath(__file__)), 360 lib_path = os.path.join(search_path, lib_name) 361 if os.path.isfile(lib_path): 366 …_name + ' in any of the following locations: ' + ', '.join([os.path.abspath(path) for path in lib_… 369 filename, file_extension = os.path.splitext(args.file)
|
/Renode-v1.15.3-c57714d/src/Renode/Network/NetworkServer/Modules/ |
D | TftpServerModule.cs | 59 public void ServeFile(string path, string name = null) in ServeFile() argument 61 name = name ?? Path.GetFileName(path); in ServeFile() 66 files.Add(name, path); in ServeFile() 143 var path = await Task.Run(() => FindFile(args.Filename)); in HandleStream() 144 if(path == null) in HandleStream() 152 using (var stream = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.Read)) in HandleStream() 161 … this.Log(LogLevel.Warning, "There was an error when reading {0} file: {1}", path, e.Message); in HandleStream()
|
/Renode-v1.15.3-c57714d/tools/metrics_analyzer/metrics_visualizer/ |
D | metrics-visualizer.py | 21 sys.path.append(os.path.dirname(os.path.dirname(__file__)))
|
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/ |
D | UsingEntry.cs | 16 public UsingEntry(StringWithPosition path, string prefix) in UsingEntry() argument 18 Path = path; in UsingEntry()
|
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/tests/ |
D | generate_cs.py | 35 dir = os.path.dirname(output) 36 if not os.path.exists(dir):
|
/Renode-v1.15.3-c57714d/tests/unit-tests/ |
D | demos.robot | 16 [Arguments] ${path} 17 Execute Script ${path}
|
D | file-paths.robot | 11 ${path}= Join Path ${TEMPDIR} robot-${dirname} 12 Set Suite Variable ${SUITE_TEMPDIR} ${path} 73 # Using a string argument allows spaces in the file path.
|
/Renode-v1.15.3-c57714d/tools/tlib_helper/ |
D | gdbscript.py | 60 path = Path(start_path) 61 while not (path / '.renode-root').exists(): 62 parent = path.parent 63 if path == parent: 65 path = parent 67 cls._cached_library_path = path / 'lib' / 'resources' / 'llvm' / 'libllvm-disas.so' 93 path: str 462 if '-Antmicro.Renode.translate-' not in mapping.path: 466 MEMORY_MAPPINGS.sort(key=lambda m: m.path) 474 …ing = next((m for m in MEMORY_MAPPINGS if m.data and current_cpu_objfile.filename == m.path), None) [all …]
|
/Renode-v1.15.3-c57714d/tests/peripherals/CLIC/ |
D | CLIC-test-setup.resc | 5 # example_elf - path to the elf with test code 6 # example_sig - path to the file with example signature (has to be local absolute path) 30 cpu.Log(LogLevel.Error, "Sig path: ({0})", sig_path)
|
/Renode-v1.15.3-c57714d/tools/sel4_extensions/ |
D | gdbscript.py | 22 import os.path 38 sys.path.append(os.path.join(SOURCE_DIR, 'projects', 'capdl', 'python-capdl-tool')) 384 DEFAULT_BINARY = os.path.join(build_dir, 'kernel', 'kernel.elf') 387 images_path = os.path.join(build_dir, '*.instance.bin') 389 image_name = os.path.basename(image_path).split('.instance.bin')[0] 393 BINARIES['rootserver'] = os.path.join(build_dir, 'capdl-loader') 401 cdl_pickle = os.path.join(build_dir, 'object.pickle')
|
D | README.md | 17 include @path/to/seL4Extensions.cs 18 sysbus LoadSymbolsFrom @path/to/kernel.elf 25 -ex 'source path/to/gdbscript.py' -ex 'monitor start'
|
/Renode-v1.15.3-c57714d/tools/packaging/ |
D | common_copy_files.sh | 41 -not -path "$BASE/tests/unit-tests" \ 42 -not -path "$BASE/tests/unit-tests/RenodeTests" \ 43 -not -path "$BASE/tests/unit-tests/RenodeTests/*" \
|
D | common_copy_licenses.sh | 77 path=$1 80 if [ "$key" = "$path" ]; then
|
/Renode-v1.15.3-c57714d/tests/platforms/ |
D | echo-i2c-peripheral.py | 52 def mc_setup_echo_i2c_peripheral(path): argument 53 dummy = monitor.Machine[path]
|
/Renode-v1.15.3-c57714d/tests/peripherals/ |
D | LSM9DS1.robot | 17 # This line must use the "path" notation to handle paths with spaces 28 # This line must use the "path" notation to handle paths with spaces
|
/Renode-v1.15.3-c57714d/tools/metrics_analyzer/metrics_visualizer/assets/ |
D | helpers.py | 5 output_path = os.path.join(options.output, fileName)
|