| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |