| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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:analysis_server/plugin/protocol/protocol.dart'; | 5 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 6 import 'package:analyzer/src/generated/engine.dart'; | 6 import 'package:analyzer/src/generated/engine.dart'; |
| 7 import 'package:test/test.dart'; | 7 import 'package:test/test.dart'; |
| 8 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 8 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 9 | 9 |
| 10 import '../integration_tests.dart'; | 10 import '../integration_tests.dart'; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 @reflectiveTest | 76 @reflectiveTest |
| 77 class OptionsIntegrationTest extends AbstractOptionsIntegrationTest {} | 77 class OptionsIntegrationTest extends AbstractOptionsIntegrationTest {} |
| 78 | 78 |
| 79 @reflectiveTest | 79 @reflectiveTest |
| 80 class OptionsIntegrationTest_Driver extends AbstractOptionsIntegrationTest { | 80 class OptionsIntegrationTest_Driver extends AbstractOptionsIntegrationTest { |
| 81 @override | 81 @override |
| 82 bool get enableNewAnalysisDriver => true; | 82 bool get enableNewAnalysisDriver => true; |
| 83 | 83 |
| 84 @failingTest | 84 @failingTest |
| 85 test_option_warning_newOptionFile() async { | 85 test_option_warning_newOptionFile() async { |
| 86 // TimeoutException after 0:00:30.000000: Test timed out after 30 seconds. | 86 // TimeoutException after 0:00:30.000000: Test timed out after 30 seconds |
| 87 // (#28868). |
| 87 //return super.test_option_warning_newOptionFile(); | 88 //return super.test_option_warning_newOptionFile(); |
| 88 fail('Test timed out'); | 89 fail('Test timed out'); |
| 89 } | 90 } |
| 90 | 91 |
| 91 @failingTest | 92 @failingTest |
| 92 test_option_warning_oldOptionFile() async { | 93 test_option_warning_oldOptionFile() async { |
| 93 // TimeoutException after 0:00:30.000000: Test timed out after 30 seconds. | 94 // TimeoutException after 0:00:30.000000: Test timed out after 30 seconds |
| 95 // (#28868). |
| 94 //return super.test_option_warning_oldOptionFile(); | 96 //return super.test_option_warning_oldOptionFile(); |
| 95 fail('Test timed out'); | 97 fail('Test timed out'); |
| 96 } | 98 } |
| 97 } | 99 } |
| OLD | NEW |