| 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 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 * $noCrash tests are expected to be flaky but not crash | 1037 * $noCrash tests are expected to be flaky but not crash |
| 1037 * $pass tests are expected to pass | 1038 * $pass tests are expected to pass |
| 1038 * $failOk tests are expected to fail that we won't fix | 1039 * $failOk tests are expected to fail that we won't fix |
| 1039 * $fail tests are expected to fail that we should fix | 1040 * $fail tests are expected to fail that we should fix |
| 1040 * $crash tests are expected to crash that we should fix | 1041 * $crash tests are expected to crash that we should fix |
| 1041 * $timeout tests are allowed to timeout | 1042 * $timeout tests are allowed to timeout |
| 1042 """; | 1043 """; |
| 1043 print(report); | 1044 print(report); |
| 1044 } | 1045 } |
| 1045 } | 1046 } |
| OLD | NEW |