| Index: test/js-perf-test/PropertyQueries/run.js
|
| diff --git a/test/js-perf-test/Scope/run.js b/test/js-perf-test/PropertyQueries/run.js
|
| similarity index 76%
|
| copy from test/js-perf-test/Scope/run.js
|
| copy to test/js-perf-test/PropertyQueries/run.js
|
| index 9ce00a15a5ae3b9c221da343343369e1ec699be8..d98c366276949c542800cb64e396a82b17ccd355 100644
|
| --- a/test/js-perf-test/Scope/run.js
|
| +++ b/test/js-perf-test/PropertyQueries/run.js
|
| @@ -1,24 +1,21 @@
|
| -// Copyright 2015 the V8 project authors. All rights reserved.
|
| +// Copyright 2016 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.
|
|
|
| -
|
| load('../base.js');
|
| -load('with.js');
|
| +load('property-queries.js');
|
|
|
| var success = true;
|
|
|
| function PrintResult(name, result) {
|
| - print(name + '-Scope(Score): ' + result);
|
| + print(name + '-PropertyQueries(Score): ' + result);
|
| }
|
|
|
| -
|
| function PrintError(name, error) {
|
| PrintResult(name, error);
|
| success = false;
|
| }
|
|
|
| -
|
| BenchmarkSuite.config.doWarmup = undefined;
|
| BenchmarkSuite.config.doDeterministic = undefined;
|
|
|
|
|