Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // 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.
| |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #library("test_controller"); | |
| 6 | |
|
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.
| |
| 7 | |
| 8 #import("test_runner.dart"); | |
| 9 #import("../../../tests/standalone/test_config.dart"); | |
| 10 #import("../../../tests/corelib/test_config.dart"); | |
| 11 | |
| 12 main() { | |
| 13 var queue = new AsyncProcessQueue(); | |
| 14 new StandaloneTestSuite().getTests(queue.runTest); | |
| 15 new CorelibTestSuite().getTests(queue.runTest); | |
| 16 } | |
| OLD | NEW |