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

Unified Diff: tests/co19/test_config.dart

Issue 9320038: Move test.dart's check for missing test directories from co19 to general framework. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/testing/dart/test_suite.dart » ('j') | tools/testing/dart/test_suite.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/co19/test_config.dart
diff --git a/tests/co19/test_config.dart b/tests/co19/test_config.dart
index c4f07ab7182a3fd9a7db5f75a3b003672f0228a0..f1e109f86fba175c3f5a958dc3e280f4fcafa2c0 100644
--- a/tests/co19/test_config.dart
+++ b/tests/co19/test_config.dart
@@ -4,7 +4,6 @@
#library("co19_test_config");
-#import("dart:io");
#import("../../tools/testing/dart/test_suite.dart");
class Co19TestSuite extends StandardTestSuite {
@@ -18,18 +17,6 @@ class Co19TestSuite extends StandardTestSuite {
"tests/co19/co19-runtime.status",
"tests/co19/co19-frog.status"]);
- // A Dart checkout may omit the check out of the co19 tests.
- void forEachTest(Function onTest, Map testCache, String globalTempDir(),
- [Function onDone = null]) {
- Directory testDirectory =
- new Directory(TestUtils.dartDir() + '/tests/co19/src');
- if (testDirectory.existsSync()) {
- super.forEachTest(onTest, testCache, globalTempDir, onDone);
- } else {
- if (onDone != null) onDone();
- }
- }
-
bool isTestFile(String filename) => _testRegExp.hasMatch(filename);
bool listRecursively() => true;
bool complexStatusMatching() => true;
« no previous file with comments | « no previous file | tools/testing/dart/test_suite.dart » ('j') | tools/testing/dart/test_suite.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698