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

Unified Diff: tools/test.dart

Issue 15565004: Queue TEST_SUITE_DIRECTORIES before co19 & ... (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 71a3e78e696609178e2006560f135f60d10591ad..fae942b1926e1d05af25d5e183cd7dfeaba971e1 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -142,6 +142,14 @@ void testConfigurations(List<Map> configurations) {
}
for (String key in selectors.keys) {
+ for (final testSuiteDir in TEST_SUITE_DIRECTORIES) {
+ final name = testSuiteDir.filename;
+ if (selectors.containsKey(name)) {
+ testSuites.add(
+ new StandardTestSuite.forDirectory(conf, testSuiteDir));
+ }
+ }
+
if (key == 'co19') {
testSuites.add(new Co19TestSuite(conf));
} else if (conf['runtime'] == 'vm' && key == 'vm') {
@@ -164,14 +172,6 @@ void testConfigurations(List<Map> configurations) {
}
}
}
-
- for (final testSuiteDir in TEST_SUITE_DIRECTORIES) {
- final name = testSuiteDir.filename;
- if (selectors.containsKey(name)) {
- testSuites.add(
- new StandardTestSuite.forDirectory(conf, testSuiteDir));
- }
- }
}
void allTestsFinished() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698