Index: test/js-perf-test/Keys/run.js |
diff --git a/test/js-perf-test/Object/run.js b/test/js-perf-test/Keys/run.js |
similarity index 71% |
copy from test/js-perf-test/Object/run.js |
copy to test/js-perf-test/Keys/run.js |
index 15c31ba08db6a5cd59c5ebc68498e9b024c2f91e..2e7f4de9a707593641d296227872a66bd6d49090 100644 |
--- a/test/js-perf-test/Object/run.js |
+++ b/test/js-perf-test/Keys/run.js |
@@ -2,25 +2,21 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
- |
load('../base.js'); |
-load('assign.js'); |
+load('keys.js'); |
var success = true; |
function PrintResult(name, result) { |
- print(name + '-Object(Score): ' + result); |
+ print(name + '-Keys(Score): ' + result); |
} |
- |
function PrintError(name, error) { |
PrintResult(name, error); |
success = false; |
} |
- |
BenchmarkSuite.config.doWarmup = undefined; |
BenchmarkSuite.config.doDeterministic = undefined; |
-BenchmarkSuite.RunSuites({ NotifyResult: PrintResult, |
- NotifyError: PrintError }); |
+BenchmarkSuite.RunSuites({NotifyResult: PrintResult, NotifyError: PrintError}); |