| Index: mojo/public/tools/dart_analyze.py
|
| diff --git a/mojo/public/tools/dart_analyze.py b/mojo/public/tools/dart_analyze.py
|
| index 8b8117e205cd0f6a282ba4102bd0ec0987fc8a91..fee6a78b5cea8b651e3ab8614511d190287f21fa 100755
|
| --- a/mojo/public/tools/dart_analyze.py
|
| +++ b/mojo/public/tools/dart_analyze.py
|
| @@ -47,10 +47,8 @@ def main(args):
|
| filtered_lines = [i for i in raw_lines if (
|
| not re.match(_ANALYZING_PATTERN, i) and
|
| not re.match(_FINAL_REPORT_PATTERN, i) and
|
| - # TODO(erg): Remove the rest of these as fixes land:
|
| - not re.match(_WARNING_PATTERN, i) and
|
| - not re.match(_NATIVE_ERROR_PATTERN, i) and
|
| - not re.match(_THAT_ONE_BROKEN_CLOSE_IN_WEB_SOCKETS_PATTERN, i))]
|
| + # TODO(zra, erg): Fix warnings.
|
| + not re.match(_WARNING_PATTERN, i))]
|
| for line in filtered_lines:
|
| passed = False
|
| print >> sys.stderr, line
|
|
|