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": [ |
| 11 { |
| 12 "name": "Array pattern destructuring", |
| 13 "path": ["SixSpeed/array_destructuring"], |
| 14 "main": "run.js", |
| 15 "resources": [ |
| 16 "run.js", |
| 17 "array_destructuring.js" |
| 18 ], |
| 19 "results_regexp": "^%s\\(Score\\): (.+)$", |
| 20 "tests": [ |
| 21 {"name": "ArrayDestructuring-ES5"}, |
| 22 {"name": "ArrayDestructuring-ES6"} |
| 23 ] |
| 24 }, |
11 { | 25 { |
12 "name": "Computed property names in object literals", | 26 "name": "Computed property names in object literals", |
13 "path": ["SixSpeed/object_literals"], | 27 "path": ["SixSpeed/object_literals"], |
14 "main": "run.js", | 28 "main": "run.js", |
15 "resources": [ | 29 "resources": [ |
16 "run.js", | 30 "run.js", |
17 "object_literals.js" | 31 "object_literals.js" |
18 ], | 32 ], |
19 "results_regexp": "^%s\\(Score\\): (.+)$", | 33 "results_regexp": "^%s\\(Score\\): (.+)$", |
20 "tests": [ | 34 "tests": [ |
(...skipping 11 matching lines...) Expand all Loading... |
32 ], | 46 ], |
33 "results_regexp": "^%s\\(Score\\): (.+)$", | 47 "results_regexp": "^%s\\(Score\\): (.+)$", |
34 "tests": [ | 48 "tests": [ |
35 {"name": "Spread-ES5"}, | 49 {"name": "Spread-ES5"}, |
36 {"name": "Spread-Traceur"}, | 50 {"name": "Spread-Traceur"}, |
37 {"name": "Spread-ES6"} | 51 {"name": "Spread-ES6"} |
38 ] | 52 ] |
39 } | 53 } |
40 ] | 54 ] |
41 } | 55 } |
OLD | NEW |