OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #library("test_suite"); | 5 #library("test_suite"); |
6 | 6 |
| 7 #import("dart:io"); |
7 #import("status_file_parser.dart"); | 8 #import("status_file_parser.dart"); |
8 #import("test_runner.dart"); | 9 #import("test_runner.dart"); |
9 #import("multitest.dart"); | 10 #import("multitest.dart"); |
10 | 11 |
11 #source("browser_test.dart"); | 12 #source("browser_test.dart"); |
12 | 13 |
13 interface TestSuite { | 14 interface TestSuite { |
14 void forEachTest(Function onTest, Map testCache, String globalTempDir(), | 15 void forEachTest(Function onTest, Map testCache, String globalTempDir(), |
15 [Function onDone]); | 16 [Function onDone]); |
16 } | 17 } |
(...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1048 * $noCrash tests are expected to be flaky but not crash | 1049 * $noCrash tests are expected to be flaky but not crash |
1049 * $pass tests are expected to pass | 1050 * $pass tests are expected to pass |
1050 * $failOk tests are expected to fail that we won't fix | 1051 * $failOk tests are expected to fail that we won't fix |
1051 * $fail tests are expected to fail that we should fix | 1052 * $fail tests are expected to fail that we should fix |
1052 * $crash tests are expected to crash that we should fix | 1053 * $crash tests are expected to crash that we should fix |
1053 * $timeout tests are allowed to timeout | 1054 * $timeout tests are allowed to timeout |
1054 """; | 1055 """; |
1055 print(report); | 1056 print(report); |
1056 } | 1057 } |
1057 } | 1058 } |
OLD | NEW |