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

Unified Diff: pkg/front_end/tool/fasta_perf_test.dart

Issue 2697403005: Add script to run fasta as a benchmark (Closed)
Patch Set: Created 3 years, 10 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 | « pkg/front_end/tool/fasta_perf.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/tool/fasta_perf_test.dart
diff --git a/pkg/front_end/tool/fasta_perf_test.dart b/pkg/front_end/tool/fasta_perf_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..414590855e20f7bb3a73bdcceebec0dd405b869f
--- /dev/null
+++ b/pkg/front_end/tool/fasta_perf_test.dart
@@ -0,0 +1,21 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/// The only purpose of this file is to enable analyzer tests on `perf.dart`,
+/// the code here just has a dummy import to the rest of the code.
+library front_end.tool.perf_test;
+
+import 'dart:io' show Platform;
+import 'fasta_perf.dart' as m;
+
+main() async {
+ var benchIds = [
+ 'scan',
+ 'kernel_gen_e2e',
+ ];
+ var inputFile = Platform.script.resolve('../lib/file_system.dart').path;
+ for (var id in benchIds) {
+ await m.main([id, inputFile]);
+ }
+}
« no previous file with comments | « pkg/front_end/tool/fasta_perf.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698