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

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

Issue 2026503002: Add js-perf-test benchmark for generators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « test/js-perf-test/Generators/run.js ('k') | no next file » | 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": [
11 { 11 {
12 "name": "Generators",
13 "path": ["Generators"],
14 "main": "run.js",
15 "resources": ["generators.js"],
16 "flags": ["--harmony-function-sent"],
17 "results_regexp": "^%s\\-Generators\\(Score\\): (.+)$"
Michael Achenbach 2016/06/02 18:59:51 This is currently failing. A %s makes only sense i
18 },
19 {
20 "name": "GeneratorsIgnition",
21 "path": ["Generators"],
22 "main": "run.js",
23 "resources": ["generators.js"],
24 "flags": [
25 "--harmony-function-sent",
26 "--ignition",
27 "--ignition-generators"
28 ],
29 "results_regexp": "^%s\\-Generators\\(Score\\): (.+)$"
30 },
31 {
32 "name": "GeneratorsIgnitionTurbofan",
33 "path": ["Generators"],
34 "main": "run.js",
35 "resources": ["generators.js"],
36 "flags": [
37 "--harmony-function-sent",
38 "--ignition",
39 "--ignition-generators",
40 "--turbo",
41 "--turbo-from-bytecode"
42 ],
43 "results_regexp": "^%s\\-Generators\\(Score\\): (.+)$"
44 },
45 {
12 "name": "RestParameters", 46 "name": "RestParameters",
13 "path": ["RestParameters"], 47 "path": ["RestParameters"],
14 "main": "run.js", 48 "main": "run.js",
15 "resources": ["rest.js"], 49 "resources": ["rest.js"],
16 "run_count": 5, 50 "run_count": 5,
17 "units": "score", 51 "units": "score",
18 "results_regexp": "^%s\\-RestParameters\\(Score\\): (.+)$", 52 "results_regexp": "^%s\\-RestParameters\\(Score\\): (.+)$",
19 "tests": [ 53 "tests": [
20 {"name": "Basic1"} 54 {"name": "Basic1"}
21 ] 55 ]
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 {"name": "Object.hasOwnProperty--DEINTERN-prop"}, 216 {"name": "Object.hasOwnProperty--DEINTERN-prop"},
183 {"name": "Object.hasOwnProperty--NE-INTERN-prop"}, 217 {"name": "Object.hasOwnProperty--NE-INTERN-prop"},
184 {"name": "Object.hasOwnProperty--NE-DEINTERN-prop"}, 218 {"name": "Object.hasOwnProperty--NE-DEINTERN-prop"},
185 {"name": "Object.hasOwnProperty--el"}, 219 {"name": "Object.hasOwnProperty--el"},
186 {"name": "Object.hasOwnProperty--el-str"}, 220 {"name": "Object.hasOwnProperty--el-str"},
187 {"name": "Object.hasOwnProperty--NE-el"} 221 {"name": "Object.hasOwnProperty--NE-el"}
188 ] 222 ]
189 } 223 }
190 ] 224 ]
191 } 225 }
OLDNEW
« no previous file with comments | « test/js-perf-test/Generators/run.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698