| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2006-2008 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 # TODO(nsylvain): Convert to python. | 7 # TODO(nsylvain): Convert to python. |
| 8 | 8 |
| 9 # Create or reinitialize a standard perf test directory. | 9 # Create or reinitialize a standard perf test directory. |
| 10 function InitDir() | 10 function InitDir() |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 InitUIDashboard $1/moz "Page Cycler Moz" | 56 InitUIDashboard $1/moz "Page Cycler Moz" |
| 57 InitUIDashboard $1/intl1 "Page Cycler Intl1" | 57 InitUIDashboard $1/intl1 "Page Cycler Intl1" |
| 58 InitUIDashboard $1/intl2 "Page Cycler Intl2" | 58 InitUIDashboard $1/intl2 "Page Cycler Intl2" |
| 59 InitUIDashboard $1/dhtml "Page Cycler DHTML" | 59 InitUIDashboard $1/dhtml "Page Cycler DHTML" |
| 60 InitUIDashboard $1/moz-http "Page Cycler Moz - HTTP" | 60 InitUIDashboard $1/moz-http "Page Cycler Moz - HTTP" |
| 61 InitUIDashboard $1/new-tab-ui-cold "New Tab Cold" | 61 InitUIDashboard $1/new-tab-ui-cold "New Tab Cold" |
| 62 InitUIDashboard $1/new-tab-ui-warm "New Tab Warm" | 62 InitUIDashboard $1/new-tab-ui-warm "New Tab Warm" |
| 63 InitUIDashboard $1/startup "Startup" | 63 InitUIDashboard $1/startup "Startup" |
| 64 InitUIDashboard $1/tab-switching "Tab Switching" | 64 InitUIDashboard $1/tab-switching "Tab Switching" |
| 65 InitUIDashboard $1/bloat-http "Bloat - HTTP" | 65 InitUIDashboard $1/bloat-http "Bloat - HTTP" |
| 66 InitUIDashboard $1/sunspider "SunSpider" |
| 67 InitUIDashboard $1/v8_benchmark "V8 Benchmark" |
| 66 | 68 |
| 67 InitUIDashboard $1/memory "Memory" | 69 InitUIDashboard $1/memory "Memory" |
| 68 | 70 |
| 69 chmod -R 755 $1 | 71 chmod -R 755 $1 |
| 70 } | 72 } |
| 71 | 73 |
| 72 # Add any new perf testers here. | 74 # Add any new perf testers here. |
| 73 InitTester xp-release-dual-core | 75 InitTester xp-release-dual-core |
| 74 InitTester xp-release-single-core | 76 InitTester xp-release-single-core |
| 75 InitTester xp-release-jsc | 77 InitTester xp-release-jsc |
| 76 InitTester vista-release-dual-core | 78 InitTester vista-release-dual-core |
| 77 InitTester vista-release-single-core | 79 InitTester vista-release-single-core |
| 78 InitTester xp-release-v8-latest | 80 InitTester xp-release-v8-latest |
| 79 InitTester mac-release | 81 InitTester mac-release |
| 80 | 82 |
| OLD | NEW |