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

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

Issue 2669223002: [Test] Reconfigure SuperSpread benchmarks to run in separate processes. (Closed)
Patch Set: Use test_flags and pass benchmark name to runner Created 3 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/SixSpeed/super_spread/babel.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": "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": [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 "results_regexp": "^%s\\(Score\\): (.+)$", 47 "results_regexp": "^%s\\(Score\\): (.+)$",
48 "tests": [ 48 "tests": [
49 {"name": "Spread-ES5"}, 49 {"name": "Spread-ES5"},
50 {"name": "Spread-Traceur"}, 50 {"name": "Spread-Traceur"},
51 {"name": "Spread-ES6"} 51 {"name": "Spread-ES6"}
52 ] 52 ]
53 }, 53 },
54 { 54 {
55 "name": "SuperSpread", 55 "name": "SuperSpread",
56 "path": ["SixSpeed/super_spread"], 56 "path": ["SixSpeed/super_spread"],
57 "main": "run.js",
58 "resources": [
59 "run.js",
60 "super_spread.js"
61 ],
62 "flags": ["--future"], 57 "flags": ["--future"],
63 "results_regexp": "^%s\\(Score\\): (.+)$", 58 "results_regexp": "^%s\\(Score\\): (.+)$",
64 "tests": [ 59 "tests": [
65 {"name": "SuperSpread-ES5"}, 60 {
66 {"name": "SuperSpread-Babel"}, 61 "name": "ES5",
Michael Achenbach 2017/02/03 12:34:14 You could consider landing this CL while keeping t
67 {"name": "SuperSpread-ES6"} 62 "main": "run.js",
63 "test_flags": ["es5"]
64 },
65 {
66 "name": "Babel",
67 "main": "run.js",
68 "test_flags": ["babel"]
69 },
70 {
71 "name": "ES6",
72 "main": "run.js",
73 "test_flags": ["es6"]
74 }
68 ] 75 ]
69 } 76 }
70 ] 77 ]
71 } 78 }
OLDNEW
« no previous file with comments | « no previous file | test/js-perf-test/SixSpeed/super_spread/babel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698