summaryrefslogtreecommitdiff
path: root/deps/v8/test/js-perf-test/ArraySort/sort-megamorphic.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/js-perf-test/ArraySort/sort-megamorphic.js')
-rw-r--r--deps/v8/test/js-perf-test/ArraySort/sort-megamorphic.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/test/js-perf-test/ArraySort/sort-megamorphic.js b/deps/v8/test/js-perf-test/ArraySort/sort-megamorphic.js
index 7f627e6c73..4f71031358 100644
--- a/deps/v8/test/js-perf-test/ArraySort/sort-megamorphic.js
+++ b/deps/v8/test/js-perf-test/ArraySort/sort-megamorphic.js
@@ -15,6 +15,6 @@ function SetupMegamorphic() {
Array.prototype.sort.call({});
}
-benchy('Base', Sort, SetupMegamorphic);
-benchy('MultipleCompareFns', CreateSortFn([cmp_smaller, cmp_greater]),
- SetupMegamorphic);
+createSortSuite('Base', 1000, Sort, SetupMegamorphic);
+createSortSuite('MultipleCompareFns', 1000,
+ CreateSortFn([cmp_smaller, cmp_greater]), SetupMegamorphic);