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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/js-perf-test/Generators/run.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/js-perf-test/JSTests.json
diff --git a/test/js-perf-test/JSTests.json b/test/js-perf-test/JSTests.json
index f8ab3693edd5dc2389f4b11c4fbd7e8fba61e71d..b4cdf6e0d05ceceb71cc957be2ca5863708200ba 100644
--- a/test/js-perf-test/JSTests.json
+++ b/test/js-perf-test/JSTests.json
@@ -9,6 +9,40 @@
"resources": ["base.js"],
"tests": [
{
+ "name": "Generators",
+ "path": ["Generators"],
+ "main": "run.js",
+ "resources": ["generators.js"],
+ "flags": ["--harmony-function-sent"],
+ "results_regexp": "^%s\\-Generators\\(Score\\): (.+)$"
Michael Achenbach 2016/06/02 18:59:51 This is currently failing. A %s makes only sense i
+ },
+ {
+ "name": "GeneratorsIgnition",
+ "path": ["Generators"],
+ "main": "run.js",
+ "resources": ["generators.js"],
+ "flags": [
+ "--harmony-function-sent",
+ "--ignition",
+ "--ignition-generators"
+ ],
+ "results_regexp": "^%s\\-Generators\\(Score\\): (.+)$"
+ },
+ {
+ "name": "GeneratorsIgnitionTurbofan",
+ "path": ["Generators"],
+ "main": "run.js",
+ "resources": ["generators.js"],
+ "flags": [
+ "--harmony-function-sent",
+ "--ignition",
+ "--ignition-generators",
+ "--turbo",
+ "--turbo-from-bytecode"
+ ],
+ "results_regexp": "^%s\\-Generators\\(Score\\): (.+)$"
+ },
+ {
"name": "RestParameters",
"path": ["RestParameters"],
"main": "run.js",
« 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