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

Unified Diff: test/perf-test/Collections/weakmap.js

Issue 645583002: Remove perf tests that are moved to another location. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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/perf-test/Collections/set.js ('k') | test/perf-test/Collections/weakset.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/perf-test/Collections/weakmap.js
diff --git a/test/perf-test/Collections/weakmap.js b/test/perf-test/Collections/weakmap.js
deleted file mode 100644
index 8736dfd58b7f26c54a169ce3332e5caf424feec0..0000000000000000000000000000000000000000
--- a/test/perf-test/Collections/weakmap.js
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-
-var MapBenchmark = new BenchmarkSuite('WeakMap', [1000], [
- new Benchmark('Set', false, false, 0, WeakMapSet),
- new Benchmark('Has', false, false, 0, WeakMapHas, WeakMapSetup,
- WeakMapTearDown),
- new Benchmark('Get', false, false, 0, WeakMapGet, WeakMapSetup,
- WeakMapTearDown),
- new Benchmark('Delete', false, false, 0, WeakMapDelete, WeakMapSetup,
- WeakMapTearDown),
-]);
-
-
-var wm;
-var N = 10;
-var keys = [];
-
-
-for (var i = 0; i < N * 2; i++) {
- keys[i] = {};
-}
-
-
-function WeakMapSetup() {
- wm = new WeakMap;
- for (var i = 0; i < N; i++) {
- wm.set(keys[i], i);
- }
-}
-
-
-function WeakMapTearDown() {
- wm = null;
-}
-
-
-function WeakMapSet() {
- WeakMapSetup();
- WeakMapTearDown();
-}
-
-
-function WeakMapHas() {
- for (var i = 0; i < N; i++) {
- if (!wm.has(keys[i])) {
- throw new Error();
- }
- }
- for (var i = N; i < 2 * N; i++) {
- if (wm.has(keys[i])) {
- throw new Error();
- }
- }
-}
-
-
-function WeakMapGet() {
- for (var i = 0; i < N; i++) {
- if (wm.get(keys[i]) !== i) {
- throw new Error();
- }
- }
- for (var i = N; i < 2 * N; i++) {
- if (wm.get(keys[i]) !== undefined) {
- throw new Error();
- }
- }
-}
-
-
-function WeakMapDelete() {
- // This is run more than once per setup so we will end up deleting items
- // more than once. Therefore, we do not the return value of delete.
- for (var i = 0; i < N; i++) {
- wm.delete(keys[i]);
- }
-}
« no previous file with comments | « test/perf-test/Collections/set.js ('k') | test/perf-test/Collections/weakset.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698