Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "name": "SixSpeed", | 2 "name": "SixSpeed", |
| 3 "run_count": 3, | 3 "run_count": 3, |
| 4 "run_count_arm": 1, | 4 "run_count_arm": 1, |
| 5 "run_count_arm64": 1, | 5 "run_count_arm64": 1, |
| 6 "timeout": 120, | 6 "timeout": 120, |
| 7 "units": "score", | 7 "units": "score", |
| 8 "total": true, | 8 "total": true, |
| 9 "resources": ["base.js"], | 9 "resources": ["base.js"], |
| 10 "tests": [ | 10 "tests": [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 "results_regexp": "^%s\\(Score\\): (.+)$", | 47 "results_regexp": "^%s\\(Score\\): (.+)$", |
| 48 "tests": [ | 48 "tests": [ |
| 49 {"name": "Spread-ES5"}, | 49 {"name": "Spread-ES5"}, |
| 50 {"name": "Spread-Traceur"}, | 50 {"name": "Spread-Traceur"}, |
| 51 {"name": "Spread-ES6"} | 51 {"name": "Spread-ES6"} |
| 52 ] | 52 ] |
| 53 }, | 53 }, |
| 54 { | 54 { |
| 55 "name": "SuperSpread", | 55 "name": "SuperSpread", |
| 56 "path": ["SixSpeed/super_spread"], | 56 "path": ["SixSpeed/super_spread"], |
| 57 "main": "run.js", | |
| 58 "resources": [ | |
| 59 "run.js", | |
| 60 "super_spread.js" | |
| 61 ], | |
| 62 "flags": ["--future"], | 57 "flags": ["--future"], |
| 63 "results_regexp": "^%s\\(Score\\): (.+)$", | 58 "results_regexp": "^%s\\(Score\\): (.+)$", |
| 64 "tests": [ | 59 "tests": [ |
| 65 {"name": "SuperSpread-ES5"}, | 60 { |
| 66 {"name": "SuperSpread-Babel"}, | 61 "name": "ES5", |
|
Michael Achenbach
2017/02/03 12:34:14
You could consider landing this CL while keeping t
| |
| 67 {"name": "SuperSpread-ES6"} | 62 "main": "run.js", |
| 63 "test_flags": ["es5"] | |
| 64 }, | |
| 65 { | |
| 66 "name": "Babel", | |
| 67 "main": "run.js", | |
| 68 "test_flags": ["babel"] | |
| 69 }, | |
| 70 { | |
| 71 "name": "ES6", | |
| 72 "main": "run.js", | |
| 73 "test_flags": ["es6"] | |
| 74 } | |
| 68 ] | 75 ] |
| 69 } | 76 } |
| 70 ] | 77 ] |
| 71 } | 78 } |
| OLD | NEW |