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

Side by Side 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: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698