Commit 00de0eea authored by Dan Harrington's avatar Dan Harrington Committed by Commit Bot

sort suppressions.xml

suppress.py outputs XML tags in sorted order, which makes seeing the
changes difficult when suppressions.xml is not sorted. I've re-ordered
tags in this file so that running suppress.py results in no diff beyond
missing comments.

Added a note at the top to suggest inserting tags in sorted order.

There should be no material changes to suppressions.xml in this CL.

Change-Id: I43b8ad4928bc6262e486bcba71aa2c0bb282c1f8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1947227Reviewed-by: default avatarPeter Wen <wnwen@chromium.org>
Commit-Queue: Dan H <harringtond@chromium.org>
Cr-Commit-Position: refs/heads/master@{#720740}
parent e576f1de
...@@ -37,13 +37,13 @@ _DOC = ( ...@@ -37,13 +37,13 @@ _DOC = (
'Still reading?\n' 'Still reading?\n'
'- You can edit this file manually to suppress an issue\n' '- You can edit this file manually to suppress an issue\n'
' globally if it is not applicable to the project.\n' ' globally if it is not applicable to the project.\n'
' When inserting new tags, keep this file in sorted order.\n'
'- You can also automatically add issues found so for in the\n' '- You can also automatically add issues found so for in the\n'
' build process by running:\n\n' ' build process by running:\n\n'
' ' + os.path.relpath(_THIS_FILE, host_paths.DIR_SOURCE_ROOT) + '\n\n' ' ' + os.path.relpath(_THIS_FILE, host_paths.DIR_SOURCE_ROOT) + '\n\n'
' which will generate this file (Comments are not preserved).\n' ' which will generate this file (Comments are not preserved).\n'
' Note: PRODUCT_DIR will be substituted at run-time with actual\n' ' Note: PRODUCT_DIR will be substituted at run-time with actual\n'
' directory path (e.g. out/Debug)\n' ' directory path (e.g. out/Debug)\n')
)
_Issue = collections.namedtuple('Issue', ['severity', 'paths', 'regexps']) _Issue = collections.namedtuple('Issue', ['severity', 'paths', 'regexps'])
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment