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

Side by Side Diff: pkg/analysis_server/test/context_manager_driver_test.dart

Issue 2841543002: Spelling a (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « docs/language/dartLangSpec.tex ('k') | pkg/analyzer/lib/src/context/builder.dart » ('j') | 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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 import 'package:test/test.dart'; 5 import 'package:test/test.dart';
6 import 'package:test_reflective_loader/test_reflective_loader.dart'; 6 import 'package:test_reflective_loader/test_reflective_loader.dart';
7 7
8 import 'context_manager_test.dart'; 8 import 'context_manager_test.dart';
9 9
10 main() { 10 main() {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // It appears that this fails because we are not correctly updating the 57 // It appears that this fails because we are not correctly updating the
58 // analysis options in the driver when the file is modified. 58 // analysis options in the driver when the file is modified.
59 //return super.test_optionsFile_update_strongMode(); 59 //return super.test_optionsFile_update_strongMode();
60 // After a few other changes, the test now times out on my machine, so I'm 60 // After a few other changes, the test now times out on my machine, so I'm
61 // disabling it in order to prevent it from being flaky. 61 // disabling it in order to prevent it from being flaky.
62 fail('Test times out'); 62 fail('Test times out');
63 } 63 }
64 64
65 @failingTest 65 @failingTest
66 test_path_filter_analysis_option() async { 66 test_path_filter_analysis_option() async {
67 // This fails because we're not analyzing the analyis options file. 67 // This fails because we're not analyzing the analysis options file.
68 return super.test_path_filter_analysis_option(); 68 return super.test_path_filter_analysis_option();
69 } 69 }
70 } 70 }
71 71
72 @reflectiveTest 72 @reflectiveTest
73 class ContextManagerWithOldOptionsTest_Driver 73 class ContextManagerWithOldOptionsTest_Driver
74 extends ContextManagerWithOldOptionsTest { 74 extends ContextManagerWithOldOptionsTest {
75 bool get enableAnalysisDriver => true; 75 bool get enableAnalysisDriver => true;
76 76
77 @failingTest 77 @failingTest
(...skipping 15 matching lines...) Expand all
93 // It appears that this fails because we are not correctly updating the 93 // It appears that this fails because we are not correctly updating the
94 // analysis options in the driver when the file is modified. 94 // analysis options in the driver when the file is modified.
95 //return super.test_optionsFile_update_strongMode(); 95 //return super.test_optionsFile_update_strongMode();
96 // After a few other changes, the test now times out on my machine, so I'm 96 // After a few other changes, the test now times out on my machine, so I'm
97 // disabling it in order to prevent it from being flaky. 97 // disabling it in order to prevent it from being flaky.
98 fail('Test times out'); 98 fail('Test times out');
99 } 99 }
100 100
101 @failingTest 101 @failingTest
102 test_path_filter_analysis_option() async { 102 test_path_filter_analysis_option() async {
103 // This fails because we're not analyzing the analyis options file. 103 // This fails because we're not analyzing the analysis options file.
104 return super.test_path_filter_analysis_option(); 104 return super.test_path_filter_analysis_option();
105 } 105 }
106 } 106 }
OLDNEW
« no previous file with comments | « docs/language/dartLangSpec.tex ('k') | pkg/analyzer/lib/src/context/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698