From 2e671be911bb25ec766c21e40b8a073a6da5fa69 Mon Sep 17 00:00:00 2001 From: Dale Curtis Date: Fri, 25 Feb 2011 14:15:58 -0800 Subject: [PATCH] Remove the crash whitelist for chromeos-wm sig 6 now that a fix has been pushed and cycled through the builders. Change-Id: I91ebdcd62630011bb55c7d65d947bcab51533633 BUG=chromium-os:12212 TEST=Ran against a result set with crashes. Review URL: http://codereview.chromium.org/6598010 --- generate_test_report.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/generate_test_report.py b/generate_test_report.py index d21ea5286d..ed64fc1974 100755 --- a/generate_test_report.py +++ b/generate_test_report.py @@ -25,10 +25,7 @@ _STDOUT_IS_TTY = hasattr(sys.stdout, 'isatty') and sys.stdout.isatty() # List of crashes which are okay to ignore. This list should almost always be # empty. If you add an entry, mark it with a TODO() and the issue # filed for the crash. -_CRASH_WHITELIST = { - # TODO(dalecurtis): chromium-os:12212. Remove when resolved. - 'chromeos-wm': ['sig 6'] -} +_CRASH_WHITELIST = {} class ReportGenerator(object): """Collects and displays data from autoserv results directories.