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

Side by Side Diff: tools/testing/dart/test_suite.dart

Issue 12326093: Remove r09 of guava; make sure all the dartc files are updated to use r13. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/create_sdk.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « tools/create_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698