| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import copy | 6 import copy |
| 7 from datetime import datetime | 7 from datetime import datetime |
| 8 import os | 8 import os |
| 9 import pickle | 9 import pickle |
| 10 import time | 10 import time |
| 11 import unittest | 11 import unittest |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 BUGCR,72223,IMAGE PASS,media/video-frame-accurate-seek.html, | 201 BUGCR,72223,IMAGE PASS,media/video-frame-accurate-seek.html, |
| 202 BUGCR,75354,TEXT IMAGE IMAGE+TEXT,media/media-document-audio-repaint.html, | 202 BUGCR,75354,TEXT IMAGE IMAGE+TEXT,media/media-document-audio-repaint.html, |
| 203 BUGCR,73609,TEXT,http/tests/media/video-play-stall.html, | 203 BUGCR,73609,TEXT,http/tests/media/video-play-stall.html, |
| 204 BUGWK,64003,DEBUG TEXT MAC PASS,media/video-delay-load-event.html, | 204 BUGWK,64003,DEBUG TEXT MAC PASS,media/video-delay-load-event.html, |
| 205 """ | 205 """ |
| 206 self.assertEquals(issues_txt, expected_issues_txt) | 206 self.assertEquals(issues_txt, expected_issues_txt) |
| 207 | 207 |
| 208 | 208 |
| 209 if __name__ == '__main__': | 209 if __name__ == '__main__': |
| 210 unittest.main() | 210 unittest.main() |
| OLD | NEW |