Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: test/js-perf-test/JSTests.json

Issue 1702613002: [js-perf-test] Adding micro benchmarks for for-in and keys patterns. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixing license date Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | test/js-perf-test/Keys/keys.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 "tests": [ 135 "tests": [
136 {"name": "Try-Catch"} 136 {"name": "Try-Catch"}
137 ] 137 ]
138 }, 138 },
139 { 139 {
140 "name": "Keys", 140 "name": "Keys",
141 "path": ["Keys"], 141 "path": ["Keys"],
142 "main": "run.js", 142 "main": "run.js",
143 "resources": ["keys.js"], 143 "resources": ["keys.js"],
144 "results_regexp": "^%s\\-Keys\\(Score\\): (.+)$", 144 "results_regexp": "^%s\\-Keys\\(Score\\): (.+)$",
145 "run_count": 3,
146 "run_count_android_arm": 2,
147 "run_count_android_arm64": 2,
145 "tests": [ 148 "tests": [
146 {"name": "Object.keys()"}, 149 {"name": "Object.keys()"},
147 {"name": "for (in)"}, 150 {"name": "for-in"},
148 {"name": "for (in) hasOwnProperty()"}, 151 {"name": "for-in hasOwnProperty()"},
149 {"name": "for Object.keys()"}, 152 {"name": "for (i < Object.keys().length)"},
150 {"name": "Object.keys().forEach()"}, 153 {"name": "Object.keys().forEach()"},
151 {"name": "for (i < array.length)"}, 154 {"name": "for (i < array.length)"},
152 {"name": "for (i < length)"} 155 {"name": "for (i < length)"}
153 ] 156 ]
154 } 157 }
155 ] 158 ]
156 } 159 }
OLDNEW
« no previous file with comments | « no previous file | test/js-perf-test/Keys/keys.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698