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

Unified Diff: frog/tests/await/test_config.dart

Issue 8821009: Add more test configurations. Everything seems covered for frog again now. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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
« no previous file with comments | « no previous file | tools/test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/tests/await/test_config.dart
diff --git a/frog/tests/await/test_config.dart b/frog/tests/await/test_config.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4447bcb57710b935818677fa99d8a7e4f6488186
--- /dev/null
+++ b/frog/tests/await/test_config.dart
@@ -0,0 +1,25 @@
+// Copyright (c) 2011, 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.
+
+#library("await_test_config");
+
+#import("../../../tools/testing/dart/test_suite.dart");
+
+class AwaitTestSuite extends StandardTestSuite {
+ AwaitTestSuite(Map configuration)
+ : super(configuration,
+ "await",
+ "frog/tests/await/src",
+ ["frog/tests/await/await.status"]);
+
+ List<String> additionalOptions() {
+ // Support running the tests from the frog as well as the
+ // top-level directory.
+ var awaitFile = new File("await/awaitc.dart");
+ if (!awaitFile.existsSync()) {
+ awaitFile = new File("frog/await/awaitc.dart");
+ }
+ return [awaitFile.fullPathSync()];
+ }
+}
« no previous file with comments | « no previous file | tools/test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698