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

Unified Diff: test/js-perf-test/JSTests.json

Issue 1746383003: [js-perf-test] add microbenchmarks for Object.values(), Object.entries() (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Make the tests actually work 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/js-perf-test/Object/ObjectTests.json » ('j') | test/js-perf-test/Object/entries.js » ('J')
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 b482749244a1457ff0281c1063d5e27d585f6c70..4849dcb03a97acadbe3e34fce1cf74d6ddde8a95 100644
--- a/test/js-perf-test/JSTests.json
+++ b/test/js-perf-test/JSTests.json
@@ -108,12 +108,21 @@
},
{
"name": "Object",
- "path": ["Object"],
+ "path": ["."],
Michael Achenbach 2016/03/09 08:22:53 This fails on arm + android since it landed. I thi
caitp (gmail) 2016/03/09 11:49:37 oops, I'll fix that
"main": "run.js",
- "resources": ["assign.js"],
+ "flags": ["--harmony"],
+ "resources": [
+ "assign.js",
+ "values.js",
+ "entries.js"
+ ],
"results_regexp": "^%s\\-Object\\(Score\\): (.+)$",
"tests": [
- {"name": "Assign"}
+ {"name": "Assign"},
+ {"name": "Entries"},
+ {"name": "EntriesMegamorphic"},
+ {"name": "Values"},
+ {"name": "ValuesMegamorphic"}
]
},
{
« no previous file with comments | « no previous file | test/js-perf-test/Object/ObjectTests.json » ('j') | test/js-perf-test/Object/entries.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698