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

Unified Diff: test/js-perf-test/AsyncAwait/run.js

Issue 2577393002: [js-perf-test] Add a basic async-await microbenchmark (Closed)
Patch Set: Re-babel Created 4 years 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
Index: test/js-perf-test/AsyncAwait/run.js
diff --git a/test/js-perf-test/AsyncAwait/run.js b/test/js-perf-test/AsyncAwait/run.js
new file mode 100644
index 0000000000000000000000000000000000000000..0d3855077b5d57943aa432aae53f499de40952aa
--- /dev/null
+++ b/test/js-perf-test/AsyncAwait/run.js
@@ -0,0 +1,28 @@
+// 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('baseline-babel-es2017.js');
+load('baseline-naive-promises.js');
+load('native.js');
+
+var success = true;
+
+function PrintResult(name, result) {
+ print(name + '-AsyncAwait(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 });

Powered by Google App Engine
This is Rietveld 408576698