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

Unified Diff: tools/testing/dart/test_controller.dart

Issue 8492013: Add asynchronous test suite runner to Dart rewrite of test scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix TestRunnerTest to use new TestCase constructor. Created 9 years, 1 month 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: tools/testing/dart/test_controller.dart
diff --git a/tools/testing/dart/test_controller.dart b/tools/testing/dart/test_controller.dart
new file mode 100644
index 0000000000000000000000000000000000000000..cb400e6cb4c0df448425f0191ab72efddd7bb0f4
--- /dev/null
+++ b/tools/testing/dart/test_controller.dart
@@ -0,0 +1,16 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
Mads Ager (google) 2011/11/08 14:58:21 Delete file, please.
+// 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("test_controller");
+
+
+#import("test_runner.dart");
+#import("../../../tests/standalone/test_config.dart");
+#import("../../../tests/corelib/test_config.dart");
+
+main() {
+ var queue = new AsyncProcessQueue();
+ new StandaloneTestSuite().getTests(queue.runTest);
+ new CorelibTestSuite().getTests(queue.runTest);
+}

Powered by Google App Engine
This is Rietveld 408576698