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); |
+} |