Chromium Code Reviews| 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 08:26:06
This is the actual test script. Can you move it to
Bill Hesse
2011/11/08 14:38:56
Done.
|
| +// 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"); |
| + |
|
Mads Ager (google)
2011/11/08 08:26:06
I would remove one new line here (or add another o
Bill Hesse
2011/11/08 14:38:56
Done.
|
| + |
| +#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); |
| +} |