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

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

Issue 9414032: Add the vm internal dart tests into the test suite. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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.dart ('k') | no next file » | 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) 2012, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2012, 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 8 // This file is identical to test.dart with test suites in the
9 // directories samples, client, compiler, frog, and utils removed. 9 // directories samples, client, compiler, frog, and utils removed.
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 queue.addTestSuite(new LanguageTestSuite(conf)); 57 queue.addTestSuite(new LanguageTestSuite(conf));
58 } 58 }
59 if (selectors.containsKey('isolate')) { 59 if (selectors.containsKey('isolate')) {
60 queue.addTestSuite(new IsolateTestSuite(conf)); 60 queue.addTestSuite(new IsolateTestSuite(conf));
61 } 61 }
62 if (selectors.containsKey('utils')) { 62 if (selectors.containsKey('utils')) {
63 queue.addTestSuite(new UtilsTestSuite(conf)); 63 queue.addTestSuite(new UtilsTestSuite(conf));
64 } 64 }
65 if (conf['component'] == 'vm' && selectors.containsKey('vm')) { 65 if (conf['component'] == 'vm' && selectors.containsKey('vm')) {
66 queue.addTestSuite(new VMTestSuite(conf)); 66 queue.addTestSuite(new VMTestSuite(conf));
67 queue.addTestSuite(new VMDartTestSuite(conf));
67 } 68 }
68 69
69 return true; 70 return true;
70 } 71 }
71 72
72 // Start process queue. 73 // Start process queue.
73 var queue = new ProcessQueue(maxProcesses, 74 var queue = new ProcessQueue(maxProcesses,
74 progressIndicator, 75 progressIndicator,
75 startTime, 76 startTime,
76 printTiming, 77 printTiming,
77 enqueueConfiguration, 78 enqueueConfiguration,
78 verbose, 79 verbose,
79 listTests, 80 listTests,
80 keepGeneratedTests); 81 keepGeneratedTests);
81 } 82 }
OLDNEW
« no previous file with comments | « tools/test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698