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

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: Created 4 years, 10 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') | test/js-perf-test/Keys/keys.js » ('J')
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 }, 128 },
129 { 129 {
130 "name": "Exceptions", 130 "name": "Exceptions",
131 "path": ["Exceptions"], 131 "path": ["Exceptions"],
132 "main": "run.js", 132 "main": "run.js",
133 "resources": ["try-catch.js"], 133 "resources": ["try-catch.js"],
134 "results_regexp": "^%s\\-Exceptions\\(Score\\): (.+)$", 134 "results_regexp": "^%s\\-Exceptions\\(Score\\): (.+)$",
135 "tests": [ 135 "tests": [
136 {"name": "Try-Catch"} 136 {"name": "Try-Catch"}
137 ] 137 ]
138 },
139 {
140 "name": "Keys",
141 "path": ["Keys"],
142 "main": "run.js",
143 "resources": ["keys.js"],
144 "results_regexp": "^%s\\-Keys\\(Score\\): (.+)$",
145 "tests": [
146 {"name": "Object.keys()"},
147 {"name": "for (in)"},
148 {"name": "for (in) hasOwnProperty()"},
149 {"name": "for Object.keys()"},
150 {"name": "Object.keys().forEach()"},
151 {"name": "for (i < array.length)"},
152 {"name": "for (i < length)"}
153 ]
138 } 154 }
139 ] 155 ]
140 } 156 }
OLDNEW
« no previous file with comments | « no previous file | test/js-perf-test/Keys/keys.js » ('j') | test/js-perf-test/Keys/keys.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698