OLD | NEW |
---|---|
1 { | 1 { |
2 "name": "JSTests", | 2 "name": "JSTests", |
3 "run_count": 5, | 3 "run_count": 5, |
4 "run_count_android_arm": 3, | 4 "run_count_android_arm": 3, |
5 "run_count_android_arm64": 3, | 5 "run_count_android_arm64": 3, |
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
101 "results_regexp": "^%s\\-Templates\\(Score\\): (.+)$", | 101 "results_regexp": "^%s\\-Templates\\(Score\\): (.+)$", |
102 "total": true, | 102 "total": true, |
103 "tests": [ | 103 "tests": [ |
104 {"name": "Untagged"}, | 104 {"name": "Untagged"}, |
105 {"name": "LargeUntagged"}, | 105 {"name": "LargeUntagged"}, |
106 {"name": "Tagged"} | 106 {"name": "Tagged"} |
107 ] | 107 ] |
108 }, | 108 }, |
109 { | 109 { |
110 "name": "Object", | 110 "name": "Object", |
111 "path": ["Object"], | 111 "path": ["."], |
Michael Achenbach
2016/03/09 08:22:53
This fails on arm + android since it landed. I thi
caitp (gmail)
2016/03/09 11:49:37
oops, I'll fix that
| |
112 "main": "run.js", | 112 "main": "run.js", |
113 "resources": ["assign.js"], | 113 "flags": ["--harmony"], |
114 "resources": [ | |
115 "assign.js", | |
116 "values.js", | |
117 "entries.js" | |
118 ], | |
114 "results_regexp": "^%s\\-Object\\(Score\\): (.+)$", | 119 "results_regexp": "^%s\\-Object\\(Score\\): (.+)$", |
115 "tests": [ | 120 "tests": [ |
116 {"name": "Assign"} | 121 {"name": "Assign"}, |
122 {"name": "Entries"}, | |
123 {"name": "EntriesMegamorphic"}, | |
124 {"name": "Values"}, | |
125 {"name": "ValuesMegamorphic"} | |
117 ] | 126 ] |
118 }, | 127 }, |
119 { | 128 { |
120 "name": "Scope", | 129 "name": "Scope", |
121 "path": ["Scope"], | 130 "path": ["Scope"], |
122 "main": "run.js", | 131 "main": "run.js", |
123 "resources": ["with.js"], | 132 "resources": ["with.js"], |
124 "results_regexp": "^%s\\-Scope\\(Score\\): (.+)$", | 133 "results_regexp": "^%s\\-Scope\\(Score\\): (.+)$", |
125 "tests": [ | 134 "tests": [ |
126 {"name": "With"} | 135 {"name": "With"} |
(...skipping 23 matching lines...) Expand all Loading... | |
150 {"name": "for-in"}, | 159 {"name": "for-in"}, |
151 {"name": "for-in hasOwnProperty()"}, | 160 {"name": "for-in hasOwnProperty()"}, |
152 {"name": "for (i < Object.keys().length)"}, | 161 {"name": "for (i < Object.keys().length)"}, |
153 {"name": "Object.keys().forEach()"}, | 162 {"name": "Object.keys().forEach()"}, |
154 {"name": "for (i < array.length)"}, | 163 {"name": "for (i < array.length)"}, |
155 {"name": "for (i < length)"} | 164 {"name": "for (i < length)"} |
156 ] | 165 ] |
157 } | 166 } |
158 ] | 167 ] |
159 } | 168 } |
OLD | NEW |