From 24bf0526be015af7e0c5b6cfe1cbbe773a9250f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= Date: Wed, 7 Aug 2024 09:37:57 +0200 Subject: [PATCH] TestHfStructMembers: Add PresliceUnsorted --- Scripts/o2_linter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Scripts/o2_linter.py b/Scripts/o2_linter.py index 5016e669d6d..d375065489b 100644 --- a/Scripts/o2_linter.py +++ b/Scripts/o2_linter.py @@ -95,7 +95,7 @@ def camel_case_to_kebab_case(line: str) -> str: def print_error(path: str, line: Union[int, None], title: str, message: str): """Format and print error message.""" - # return # Use to suppress error message when counting speed. + # return # Use to suppress error messages. str_line = "" if line is None else f"{line}:" print(f"{path}:{str_line} {message} [{title}]") # terminal format if github_mode: @@ -1206,6 +1206,7 @@ class TestHfStructMembers(TestSpec): "using ", "Filter ", "Preslice<", + "PresliceUnsorted<", "Partition<", "ConfigurableAxis ", "AxisSpec ",