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 19 matching lines...) Expand all Loading... |
30 "run.js", | 30 "run.js", |
31 "object_literals.js" | 31 "object_literals.js" |
32 ], | 32 ], |
33 "results_regexp": "^%s\\(Score\\): (.+)$", | 33 "results_regexp": "^%s\\(Score\\): (.+)$", |
34 "tests": [ | 34 "tests": [ |
35 {"name": "ObjectLiterals-ES5"}, | 35 {"name": "ObjectLiterals-ES5"}, |
36 {"name": "ObjectLiterals-ES6"} | 36 {"name": "ObjectLiterals-ES6"} |
37 ] | 37 ] |
38 }, | 38 }, |
39 { | 39 { |
| 40 "name": "Defaults", |
| 41 "path": ["SixSpeed/defaults"], |
| 42 "main": "run.js", |
| 43 "resources": [ |
| 44 "run.js", |
| 45 "defaults.js" |
| 46 ], |
| 47 "results_regexp": "^%s\\(Score\\): (.+)$", |
| 48 "tests": [ |
| 49 {"name": "Defaults-ES5"}, |
| 50 {"name": "Defaults-ES6"} |
| 51 ] |
| 52 }, |
| 53 { |
40 "name": "Spread", | 54 "name": "Spread", |
41 "path": ["SixSpeed/spread"], | 55 "path": ["SixSpeed/spread"], |
42 "main": "run.js", | 56 "main": "run.js", |
43 "resources": [ | 57 "resources": [ |
44 "run.js", | 58 "run.js", |
45 "spread.js" | 59 "spread.js" |
46 ], | 60 ], |
47 "results_regexp": "^%s\\(Score\\): (.+)$", | 61 "results_regexp": "^%s\\(Score\\): (.+)$", |
48 "tests": [ | 62 "tests": [ |
49 {"name": "Spread-ES5"}, | 63 {"name": "Spread-ES5"}, |
(...skipping 12 matching lines...) Expand all Loading... |
62 "flags": ["--future"], | 76 "flags": ["--future"], |
63 "results_regexp": "^%s\\(Score\\): (.+)$", | 77 "results_regexp": "^%s\\(Score\\): (.+)$", |
64 "tests": [ | 78 "tests": [ |
65 {"name": "SuperSpread-ES5"}, | 79 {"name": "SuperSpread-ES5"}, |
66 {"name": "SuperSpread-Babel"}, | 80 {"name": "SuperSpread-Babel"}, |
67 {"name": "SuperSpread-ES6"} | 81 {"name": "SuperSpread-ES6"} |
68 ] | 82 ] |
69 } | 83 } |
70 ] | 84 ] |
71 } | 85 } |
OLD | NEW |