Index: tools/testing/dart/test_suite.dart |
=================================================================== |
--- tools/testing/dart/test_suite.dart (revision 19891) |
+++ tools/testing/dart/test_suite.dart (working copy) |
@@ -183,7 +183,7 @@ |
case 'dartc': |
return '$buildDir/analyzer/bin/dart_analyzer$suffix'; |
case 'new_analyzer': |
- var prefix = 'sdk/bin/'; |
+ var prefix = 'sdk/bin'; |
return '$prefix/analyzer$suffix'; |
default: |
throw "Unknown executable for: ${configuration['compiler']}"; |
@@ -1230,8 +1230,7 @@ |
} |
args.addAll(additionalOptions(filePath)); |
if (configuration['analyzer']) { |
- args.add('--error_format'); |
- args.add('machine'); |
+ args.add('--machine'); |
ricow1
2013/03/13 07:06:05
This will remove the --error_format from dartc - i
devoncarew
2013/03/13 17:04:50
I actually added support for --machine to both dar
|
} |
bool isMultitest = optionsFromFile["isMultitest"]; |