Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: media/tools/layout_tests/layouttest_analyzer.py

Issue 8672007: Fix python scripts in src/media (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 """Main functions for the Layout Test Analyzer module.""" 6 """Main functions for the Layout Test Analyzer module."""
7 7
8 import csv 8 import csv
9 from datetime import datetime 9 from datetime import datetime
10 import optparse 10 import optparse
11 import os 11 import os
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 # Report the result to dashboard. 485 # Report the result to dashboard.
486 if options.dashboard_file_location: 486 if options.dashboard_file_location:
487 UpdateDashboard(options.dashboard_file_location, options.test_group_name, 487 UpdateDashboard(options.dashboard_file_location, options.test_group_name,
488 data_map, layouttests.DEFAULT_LAYOUTTEST_LOCATION, rev, 488 data_map, layouttests.DEFAULT_LAYOUTTEST_LOCATION, rev,
489 rev_date, options.receiver_email_address, 489 rev_date, options.receiver_email_address,
490 email_content) 490 email_content)
491 491
492 492
493 if '__main__' == __name__: 493 if '__main__' == __name__:
494 main() 494 main()
OLDNEW
« no previous file with comments | « media/tools/layout_tests/bug.py ('k') | media/tools/layout_tests/layouttest_analyzer_helpers.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698