Index: tools/testing/dart/test_suite.dart |
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart |
index e5d1e733ca3d550bcdc25e56e4e57c9b0bb9861c..ed950305e63188d972fa5e0c2bd58e477f0b2902 100644 |
--- a/tools/testing/dart/test_suite.dart |
+++ b/tools/testing/dart/test_suite.dart |
@@ -1171,9 +1171,8 @@ class JUnitTestSuite implements TestSuite { |
void computeClassPath() { |
classPath = Strings.join( |
- ['$buildDir/compiler/lib/dartc.jar', |
- '$buildDir/compiler-tests.jar', |
- '$buildDir/closure_out/compiler.jar', |
+ ['$buildDir/analyzer/util/analyzer/dart_analyzer.jar', |
+ '$buildDir/analyzer/dart_analyzer_tests.jar', |
// Third party libraries. |
'$dartDir/third_party/args4j/2.0.12/args4j-2.0.12.jar', |
'$dartDir/third_party/guava/r09/guava-r09.jar', |
@@ -1237,7 +1236,7 @@ class TestUtils { |
case 'none': |
return 'dart$suffix'; |
case 'dartc': |
- return 'compiler/bin/dartc$suffix'; |
+ return 'analyzer/bin/dart_analyzer$suffix'; |
case 'frog': |
case 'dart2js': |
return 'frog/bin/frog$suffix'; |
@@ -1252,7 +1251,7 @@ class TestUtils { |
String suffix = executableSuffix(configuration['compiler']); |
switch (configuration['compiler']) { |
case 'dartc': |
- return 'compiler/bin/dartc$suffix'; |
+ return 'analyzer/bin/dart_analyzer$suffix'; |
case 'frog': |
case 'dart2js': |
return 'frog/bin/frog$suffix'; |