Loading scripts/parse_sanitizer_errors_from_xml_report.py +7 −3 Original line number Diff line number Diff line Loading @@ -104,9 +104,13 @@ def postprocess_cmdline(cmdline: str, cwd: Path) -> str: if elem == "-q": continue elif (elem_as_path := Path(elem)).is_absolute(): if elem_as_path.suffix == ".192" or ( if ( elem_as_path.suffix == ".192" or elem_as_path.suffix == ".netsimtrace" or ( elem_as_path.suffix == ".wav" and cmdline_split.index(elem) == len(cmdline_split) - 1 ) ): cmdline_proc.append(elem_as_path.name) else: Loading Loading
scripts/parse_sanitizer_errors_from_xml_report.py +7 −3 Original line number Diff line number Diff line Loading @@ -104,9 +104,13 @@ def postprocess_cmdline(cmdline: str, cwd: Path) -> str: if elem == "-q": continue elif (elem_as_path := Path(elem)).is_absolute(): if elem_as_path.suffix == ".192" or ( if ( elem_as_path.suffix == ".192" or elem_as_path.suffix == ".netsimtrace" or ( elem_as_path.suffix == ".wav" and cmdline_split.index(elem) == len(cmdline_split) - 1 ) ): cmdline_proc.append(elem_as_path.name) else: Loading