| Index: tests/co19/test_config.dart
|
| diff --git a/tests/co19/test_config.dart b/tests/co19/test_config.dart
|
| index c4f07ab7182a3fd9a7db5f75a3b003672f0228a0..c1a667dafebb311a58046108e4ca05858d899805 100644
|
| --- a/tests/co19/test_config.dart
|
| +++ b/tests/co19/test_config.dart
|
| @@ -1,10 +1,9 @@
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| #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;
|
|
|