Loading scripts/parse_sanitizer_errors_from_xml_report.py +2 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ class SanitizerError: return self.location == other.location def __repr__(self): return f"<{self.__class__} at {self.location}>" return f"<{self.__class__.__name__} at {self.location}>" def __lt__(self, other): return self.location < other.location Loading @@ -34,6 +34,7 @@ class SanitizerError: def to_dict(self) -> dict: return { "testcase": self.testcase, "sanitizer": self.__class__.__name__.replace("Error", "").upper(), "location": self.location, "type": self.type, "traceback": self.traceback, Loading Loading
scripts/parse_sanitizer_errors_from_xml_report.py +2 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ class SanitizerError: return self.location == other.location def __repr__(self): return f"<{self.__class__} at {self.location}>" return f"<{self.__class__.__name__} at {self.location}>" def __lt__(self, other): return self.location < other.location Loading @@ -34,6 +34,7 @@ class SanitizerError: def to_dict(self) -> dict: return { "testcase": self.testcase, "sanitizer": self.__class__.__name__.replace("Error", "").upper(), "location": self.location, "type": self.type, "traceback": self.traceback, Loading