| Index: pkg/analyzer/test/src/context/builder_test.dart
|
| diff --git a/pkg/analyzer/test/src/context/builder_test.dart b/pkg/analyzer/test/src/context/builder_test.dart
|
| index 83e059329844874a986cc88fb19345bfd8553651..959d68f0db0975dbb2907e264610ba165594cd01 100644
|
| --- a/pkg/analyzer/test/src/context/builder_test.dart
|
| +++ b/pkg/analyzer/test/src/context/builder_test.dart
|
| @@ -735,11 +735,16 @@ linter:
|
| rules:
|
| - mock_lint_rule
|
| ''');
|
| - AnalysisOptions options = builder.getAnalysisOptions(
|
| - resourceProvider.convertPath('/some/directory/path'));
|
| + String projPath = resourceProvider.convertPath('/some/directory/path');
|
| + AnalysisOptions options = builder.getAnalysisOptions(projPath);
|
| // TODO(danrubel) fix on Windows
|
| if (resourceProvider.absolutePathContext.separator != r'\') {
|
| _expectEqualOptions(options, expected);
|
| + } else {
|
| + // echo some debugging information
|
| + print('>>> projPath: $projPath');
|
| + print('>>> ${builderOptions.defaultAnalysisOptionsFilePath}');
|
| + print('>>> getOptionsFile: ${builder.getOptionsFile(projPath)}');
|
| }
|
| }
|
|
|
|
|