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

Side by Side Diff: tools/test-runtime.dart

Issue 9139017: Make test_wrapper.py and test_compiler.dart that will work for a deps.compiler checkout. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Change name to test-compiler.dart, add comments. Created 8 years, 11 months 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
« no previous file with comments | « tools/test-compiler.dart ('k') | tools/test_wrapper.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 5
6 // TODO(ager): Get rid of this version of test.dart when we don't have 6 // TODO(ager): Get rid of this version of test.dart when we don't have
7 // to worry about the special runtime checkout anymore. 7 // to worry about the special runtime checkout anymore.
8 // This file is identical to test.dart with test suites in the
9 // directories samples, client, compiler, frog, and utils removed.
8 10
9 #library("test"); 11 #library("test");
10 12
11 #import("testing/dart/test_runner.dart"); 13 #import("testing/dart/test_runner.dart");
12 #import("testing/dart/test_options.dart"); 14 #import("testing/dart/test_options.dart");
13 15
14 #import("../tests/co19/test_config.dart"); 16 #import("../tests/co19/test_config.dart");
15 #import("../tests/corelib/test_config.dart"); 17 #import("../tests/corelib/test_config.dart");
16 #import("../tests/isolate/test_config.dart"); 18 #import("../tests/isolate/test_config.dart");
17 #import("../tests/language/test_config.dart"); 19 #import("../tests/language/test_config.dart");
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 70
69 // Start process queue. 71 // Start process queue.
70 var queue = new ProcessQueue(maxProcesses, 72 var queue = new ProcessQueue(maxProcesses,
71 progressIndicator, 73 progressIndicator,
72 startTime, 74 startTime,
73 printTiming, 75 printTiming,
74 enqueueConfiguration, 76 enqueueConfiguration,
75 verbose: verbose, 77 verbose: verbose,
76 listTests: listTests); 78 listTests: listTests);
77 } 79 }
OLDNEW
« no previous file with comments | « tools/test-compiler.dart ('k') | tools/test_wrapper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698