OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 /** | 5 /** |
6 * Classes and methods for enumerating and preparing tests. | 6 * Classes and methods for enumerating and preparing tests. |
7 * | 7 * |
8 * This library includes: | 8 * This library includes: |
9 * | 9 * |
10 * - Creating tests by listing all the Dart files in certain directories, | 10 * - Creating tests by listing all the Dart files in certain directories, |
(...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1658 | 1658 |
1659 void completeHandler(TestCase testCase) { | 1659 void completeHandler(TestCase testCase) { |
1660 } | 1660 } |
1661 | 1661 |
1662 void computeClassPath() { | 1662 void computeClassPath() { |
1663 classPath = | 1663 classPath = |
1664 ['$buildDir/analyzer/util/analyzer/dart_analyzer.jar', | 1664 ['$buildDir/analyzer/util/analyzer/dart_analyzer.jar', |
1665 '$buildDir/analyzer/dart_analyzer_tests.jar', | 1665 '$buildDir/analyzer/dart_analyzer_tests.jar', |
1666 // Third party libraries. | 1666 // Third party libraries. |
1667 '$dartDir/third_party/args4j/2.0.12/args4j-2.0.12.jar', | 1667 '$dartDir/third_party/args4j/2.0.12/args4j-2.0.12.jar', |
1668 '$dartDir/third_party/guava/r09/guava-r09.jar', | 1668 '$dartDir/third_party/guava/r13/guava-13.0.1.jar', |
1669 '$dartDir/third_party/rhino/1_7R3/js.jar', | 1669 '$dartDir/third_party/rhino/1_7R3/js.jar', |
1670 '$dartDir/third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar', | 1670 '$dartDir/third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar', |
1671 '$dartDir/third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar', | 1671 '$dartDir/third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar', |
1672 '$dartDir/third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', | 1672 '$dartDir/third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', |
1673 '$dartDir/third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', | 1673 '$dartDir/third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', |
1674 '$dartDir/third_party/junit/v4_8_2/junit.jar'] | 1674 '$dartDir/third_party/junit/v4_8_2/junit.jar'] |
1675 .join(Platform.operatingSystem == 'windows'? ';': ':'); // Path separat
or. | 1675 .join(Platform.operatingSystem == 'windows'? ';': ':'); // Path separat
or. |
1676 } | 1676 } |
1677 } | 1677 } |
1678 | 1678 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1941 * $pass tests are expected to pass | 1941 * $pass tests are expected to pass |
1942 * $failOk tests are expected to fail that we won't fix | 1942 * $failOk tests are expected to fail that we won't fix |
1943 * $fail tests are expected to fail that we should fix | 1943 * $fail tests are expected to fail that we should fix |
1944 * $crash tests are expected to crash that we should fix | 1944 * $crash tests are expected to crash that we should fix |
1945 * $timeout tests are allowed to timeout | 1945 * $timeout tests are allowed to timeout |
1946 * $compileErrorSkip tests are skipped on browsers due to compile-time error | 1946 * $compileErrorSkip tests are skipped on browsers due to compile-time error |
1947 """; | 1947 """; |
1948 print(report); | 1948 print(report); |
1949 } | 1949 } |
1950 } | 1950 } |
OLD | NEW |