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

Side by Side Diff: generate_perf.py

Issue 27686002: Fix directories for endure tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/perf
Patch Set: Created 7 years, 2 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 # Initializes all the perf directories. 6 # Initializes all the perf directories.
7 7
8 8
9 import optparse 9 import optparse
10 import os 10 import os
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 'dromaeo_jslibattrjquery': 'Dromaeo JSLib attr jquery', 148 'dromaeo_jslibattrjquery': 'Dromaeo JSLib attr jquery',
149 'dromaeo_jslibattrprototype': 'Dromaeo JSLib attr prototype', 149 'dromaeo_jslibattrprototype': 'Dromaeo JSLib attr prototype',
150 'dromaeo_jslibeventjquery': 'Dromaeo JSLib event jquery', 150 'dromaeo_jslibeventjquery': 'Dromaeo JSLib event jquery',
151 'dromaeo_jslibeventprototype': 'Dromaeo JSLib event prototype', 151 'dromaeo_jslibeventprototype': 'Dromaeo JSLib event prototype',
152 'dromaeo_jslibmodifyjquery': 'Dromaeo JSLib modify jquery', 152 'dromaeo_jslibmodifyjquery': 'Dromaeo JSLib modify jquery',
153 'dromaeo_jslibmodifyprototype': 'Dromaeo JSLib modify prototype', 153 'dromaeo_jslibmodifyprototype': 'Dromaeo JSLib modify prototype',
154 'dromaeo_jslibstylejquery': 'Dromaeo JSLib stylej query', 154 'dromaeo_jslibstylejquery': 'Dromaeo JSLib stylej query',
155 'dromaeo_jslibstyleprototype': 'Dromaeo JSLib style prototype', 155 'dromaeo_jslibstyleprototype': 'Dromaeo JSLib style prototype',
156 'dromaeo_jslibtraversejquery': 'Dromaeo JSLib traverse jquery', 156 'dromaeo_jslibtraversejquery': 'Dromaeo JSLib traverse jquery',
157 'dromaeo_jslibtraverseprototype': 'Dromaeo JSLib traverse prototype', 157 'dromaeo_jslibtraverseprototype': 'Dromaeo JSLib traverse prototype',
158 'endure_cal_fw_back': 'Endure Calendar Forward and Backward', 158 'endure_cal_fw_back_live': 'Endure Calendar Forward and Backward (live)',
159 'endure_gmail_exp_col': 'Endure Gmail Expand and Collapse Conversation', 159 'endure_gmail_exp_col_live': 'Endure Gmail Expand and Collapse Conversation (l ive)',
160 'endure_gmail_labels': 'Endure Gmail Alternate Labels', 160 'endure_gmail_labels_live': 'Endure Gmail Alternate Labels (live)',
161 'endure_gmail_thread': 'Endure Gmail Alternate Threads', 161 'endure_gmail_thread_live': 'Endure Gmail Alternate Threads (live)',
162 'endure_plus_photos': 'Endure Plus Alternate Posts and Photos', 162 'endure_plus_photos_live': 'Endure Plus Alternate Posts and Photos (live)',
163 'endure_cal_fw_back_wpr': 'Endure Calendar Forward and Backward (recording)',
164 'endure_gmail_exp_col_wpr': 'Endure Gmail Expand and Collapse Conversation (re cording)',
165 'endure_gmail_labels_wpr': 'Endure Gmail Alternate Labels (recording)',
166 'endure_gmail_thread_wpr': 'Endure Gmail Alternate Threads (recording)',
167 'endure_plus_photos_wpr': 'Endure Plus Alternate Posts and Photos (recording)' ,
163 'frame_rate': 'Frame Rate', 168 'frame_rate': 'Frame Rate',
164 'gpu_frame_rate': 'GPU Frame Rate', 169 'gpu_frame_rate': 'GPU Frame Rate',
165 'gpu_latency': 'GPU Latency', 170 'gpu_latency': 'GPU Latency',
166 'gpu_throughput': 'GPU Throughput', 171 'gpu_throughput': 'GPU Throughput',
167 'idb_perf': 'Other IndexedDB', 172 'idb_perf': 'Other IndexedDB',
168 'image_decoding_benchmark': 'Image Decoding Benchmark', 173 'image_decoding_benchmark': 'Image Decoding Benchmark',
169 'indexeddb': 'Page Cycler IndexedDB', 174 'indexeddb': 'Page Cycler IndexedDB',
170 'intl1': 'Page Cycler Intl1', 175 'intl1': 'Page Cycler Intl1',
171 'intl2': 'Page Cycler Intl2', 176 'intl2': 'Page Cycler Intl2',
172 'isac_fixed_perf': 'WebRTC iSAC Fixed-point Perf', 177 'isac_fixed_perf': 'WebRTC iSAC Fixed-point Perf',
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 continue 406 continue
402 test_title = TestTitles[test_dir] 407 test_title = TestTitles[test_dir]
403 perf_dir = os.path.join(system_dir, test_dir) 408 perf_dir = os.path.join(system_dir, test_dir)
404 os.chmod(perf_dir, 0755) 409 os.chmod(perf_dir, 0755)
405 TestInit(perf_dir, system_title, test_title, symlink_list, options.endure) 410 TestInit(perf_dir, system_title, test_title, symlink_list, options.endure)
406 return 0 411 return 0
407 412
408 413
409 if __name__ == '__main__': 414 if __name__ == '__main__':
410 sys.exit(main()) 415 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698