Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "Android Nexus4 Perf": { | 2 "Android Nexus4 Perf": { |
| 3 "scripts": [ | 3 "scripts": [ |
| 4 { | 4 { |
| 5 "name": "host_info", | 5 "name": "host_info", |
| 6 "script": "host_info.py" | 6 "script": "host_info.py" |
| 7 } | 7 } |
| 8 ] | 8 ] |
| 9 }, | 9 }, |
| 10 "Android Nexus5 Perf": { | 10 "Android Nexus5 Perf": { |
| 11 "scripts": [ | 11 "scripts": [ |
| 12 { | 12 { |
| 13 "name": "host_info", | 13 "name": "host_info", |
| 14 "script": "host_info.py" | 14 "script": "host_info.py" |
| 15 }, | |
| 16 { | |
| 17 "name": "gpu_perftests", | |
| 18 "script": "gtest_perf_test.py", | |
| 19 "args": ["gpu_perftests"] | |
| 15 } | 20 } |
| 16 ] | 21 ] |
| 17 }, | 22 }, |
| 18 "Android Nexus7v2 Perf": { | 23 "Android Nexus7v2 Perf": { |
| 19 "scripts": [ | 24 "scripts": [ |
| 20 { | 25 { |
| 21 "name": "host_info", | 26 "name": "host_info", |
| 22 "script": "host_info.py" | 27 "script": "host_info.py" |
| 23 } | 28 } |
| 24 ] | 29 ] |
| 25 }, | 30 }, |
| 26 "Android Nexus10 Perf": { | 31 "Android Nexus10 Perf": { |
| 27 "scripts": [ | 32 "scripts": [ |
| 28 { | 33 { |
| 29 "name": "host_info", | 34 "name": "host_info", |
| 30 "script": "host_info.py" | 35 "script": "host_info.py" |
| 31 } | 36 } |
| 32 ] | 37 ] |
| 33 }, | 38 }, |
| 34 "Android MotoE Perf": { | 39 "Android MotoE Perf": { |
| 35 "scripts": [ | 40 "scripts": [ |
| 36 { | 41 { |
| 37 "name": "host_info", | 42 "name": "host_info", |
| 38 "script": "host_info.py" | 43 "script": "host_info.py" |
| 39 } | 44 } |
| 40 ] | 45 ] |
| 46 }, | |
| 47 "Linux Perf (1)": { | |
| 48 "scripts": [ | |
| 49 { | |
| 50 "name": "gpu_perftests", | |
| 51 "script": "gtest_perf_test.py", | |
| 52 "args": ["gpu_perftests", "--single-process-tests"] | |
|
Nico
2015/03/02 21:53:35
why is the --single-process flag needed?
Daniele Castagna
2015/03/02 22:03:42
It's to avoid having one test slowing down/interfe
Daniele Castagna
2015/03/02 22:22:02
I included the change in this CL since it's only o
| |
| 53 } | |
| 54 ] | |
| 55 }, | |
| 56 "Win 7 ATI GPU Perf": { | |
| 57 "scripts": [ | |
| 58 { | |
| 59 "name": "gpu_perftests", | |
| 60 "script": "gtest_perf_test.py", | |
| 61 "args": ["gpu_perftests", "--single-process-tests"] | |
| 62 } | |
| 63 ] | |
| 64 }, | |
| 65 "Win 7 Intel GPU Perf": { | |
| 66 "scripts": [ | |
| 67 { | |
| 68 "name": "gpu_perftests", | |
| 69 "script": "gtest_perf_test.py", | |
| 70 "args": ["gpu_perftests", "--single-process-tests"] | |
| 71 } | |
| 72 ] | |
| 73 }, | |
| 74 "Win 7 Nvidia GPU Perf": { | |
| 75 "scripts": [ | |
| 76 { | |
| 77 "name": "gpu_perftests", | |
| 78 "script": "gtest_perf_test.py", | |
| 79 "args": ["gpu_perftests", "--single-process-tests"] | |
| 80 } | |
| 81 ] | |
| 82 }, | |
| 83 "Mac 10.8 Perf (1)": { | |
| 84 "scripts": [ | |
| 85 { | |
| 86 "name": "gpu_perftests", | |
| 87 "script": "gtest_perf_test.py", | |
| 88 "args": ["gpu_perftests", "--single-process-tests"] | |
| 89 } | |
| 90 ] | |
| 91 }, | |
| 92 "Mac 10.9 Perf (1)": { | |
| 93 "scripts": [ | |
| 94 { | |
| 95 "name": "gpu_perftests", | |
| 96 "script": "gtest_perf_test.py", | |
| 97 "args": ["gpu_perftests", "--single-process-tests"] | |
| 98 } | |
| 99 ] | |
| 41 } | 100 } |
| 42 } | 101 } |
| OLD | NEW |