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

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

Issue 2833773002: [modules] Add a simple micro-benchmark for import/export accesses. (Closed)
Patch Set: Fix. Created 3 years, 8 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/Modules/basic-export.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": 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "path": ["ForLoops"], 390 "path": ["ForLoops"],
391 "main": "run.js", 391 "main": "run.js",
392 "resources": [ 392 "resources": [
393 "for_loop.js" 393 "for_loop.js"
394 ], 394 ],
395 "results_regexp": "^%s\\-ForLoop\\(Score\\): (.+)$", 395 "results_regexp": "^%s\\-ForLoop\\(Score\\): (.+)$",
396 "tests": [ 396 "tests": [
397 {"name": "Let-Standard"}, 397 {"name": "Let-Standard"},
398 {"name": "Var-Standard"} 398 {"name": "Var-Standard"}
399 ] 399 ]
400 },
401 {
402 "name": "Modules",
403 "path": ["Modules"],
404 "main": "run.js",
405 "resources": ["basic-export.js", "basic-import.js", "basic-namespace.js", "value.js"],
406 "flags": [
407 "--allow-natives-syntax",
408 "--harmony-dynamic-import"
409 ],
410 "results_regexp": "^%s\\-Modules\\(Score\\): (.+)$",
411 "tests": [
412 {"name": "BasicExport"},
413 {"name": "BasicImport"},
414 {"name": "BasicNamespace"}
415 ]
400 } 416 }
401 ] 417 ]
402 } 418 }
OLDNEW
« no previous file with comments | « no previous file | test/js-perf-test/Modules/basic-export.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698