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

Side by Side Diff: pkg/analysis_server/test/integration/analysis/analysis_options_test.dart

Issue 2717523003: Update the statuses of various analysis server integration tests. (Closed)
Patch Set: Created 3 years, 10 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698