OLD | NEW |
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, and utils removed. | 9 // directories samples, client, compiler, and utils removed. |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 for (Map conf in configurations) { | 66 for (Map conf in configurations) { |
67 List settings = ['compiler', 'runtime', 'mode', 'arch'] | 67 List settings = ['compiler', 'runtime', 'mode', 'arch'] |
68 .mappedBy((name) => conf[name]).toList(); | 68 .mappedBy((name) => conf[name]).toList(); |
69 if (conf['checked']) settings.add('checked'); | 69 if (conf['checked']) settings.add('checked'); |
70 output_words.add(Strings.join(settings, '_')); | 70 output_words.add(Strings.join(settings, '_')); |
71 } | 71 } |
72 print(Strings.join(output_words, ' ')); | 72 print(Strings.join(output_words, ' ')); |
73 } | 73 } |
74 | 74 |
75 var testSuites = new List<TestSuite>(); | 75 var testSuites = new List<TestSuite>(); |
76 TestingServerRunner.setBuildDir(firstConf); | |
77 TestingServerRunner.setPackageRootDir(firstConf); | |
78 for (var conf in configurations) { | 76 for (var conf in configurations) { |
79 if (selectors.containsKey('co19')) { | 77 if (selectors.containsKey('co19')) { |
80 testSuites.add(new Co19TestSuite(conf)); | 78 testSuites.add(new Co19TestSuite(conf)); |
81 } | 79 } |
82 if (conf['runtime'] == 'vm' && selectors.containsKey('vm')) { | 80 if (conf['runtime'] == 'vm' && selectors.containsKey('vm')) { |
83 // vm tests contain both cc tests (added here) and dart tests (added in | 81 // vm tests contain both cc tests (added here) and dart tests (added in |
84 // [TEST_SUITE_DIRECTORIES]). | 82 // [TEST_SUITE_DIRECTORIES]). |
85 testSuites.add(new VMTestSuite(conf)); | 83 testSuites.add(new VMTestSuite(conf)); |
86 } | 84 } |
87 | 85 |
(...skipping 23 matching lines...) Expand all Loading... |
111 maxProcesses, | 109 maxProcesses, |
112 maxBrowserProcesses, | 110 maxBrowserProcesses, |
113 progressIndicator, | 111 progressIndicator, |
114 startTime, | 112 startTime, |
115 printTiming, | 113 printTiming, |
116 testSuites, | 114 testSuites, |
117 () => TestingServerRunner.terminateHttpServers(), | 115 () => TestingServerRunner.terminateHttpServers(), |
118 verbose, | 116 verbose, |
119 listTests); | 117 listTests); |
120 } | 118 } |
OLD | NEW |