Skip to content

Commit

Permalink
TestHfStructMembers: Add PresliceUnsorted
Browse files Browse the repository at this point in the history
  • Loading branch information
vkucera committed Aug 7, 2024
1 parent 19b334f commit 24bf052
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Scripts/o2_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -1206,6 +1206,7 @@ class TestHfStructMembers(TestSpec):
"using ",
"Filter ",
"Preslice<",
"PresliceUnsorted<",
"Partition<",
"ConfigurableAxis ",
"AxisSpec ",
Expand Down

0 comments on commit 24bf052

Please sign in to comment.