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\\): (.+)$", |
|
Michael Achenbach
2017/02/02 14:50:19
Did you check locally that this works? It can be t
petermarshall
2017/02/03 09:54:35
Yes it runs locally and produces the correct JSON.
| |
| 64 "tests": [ | 59 "tests": [ |
| 65 {"name": "SuperSpread-ES5"}, | 60 { |
| 66 {"name": "SuperSpread-Babel"}, | 61 "name": "ES5", |
|
Michael Achenbach
2017/02/02 14:50:19
You could also reuse the same run.js and pass a di
petermarshall
2017/02/03 09:54:35
That is awesome, I was wondering if there was some
| |
| 67 {"name": "SuperSpread-ES6"} | 62 "main": "es5.js" |
| 63 }, | |
| 64 { | |
| 65 "name": "Babel", | |
| 66 "main": "babel.js" | |
| 67 }, | |
| 68 { | |
| 69 "name": "ES6", | |
| 70 "main": "es6.js" | |
| 71 } | |
| 68 ] | 72 ] |
| 69 } | 73 } |
| 70 ] | 74 ] |
| 71 } | 75 } |
| OLD | NEW |