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

Side by Side Diff: pkg/analyzer_cli/test/all.dart

Issue 1459083005: Remove bot-unfriendly tests (#25001) [TBR]. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | no next file » | 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) 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 'driver_test.dart' as driver; 5 import 'driver_test.dart' as driver;
6 import 'error_test.dart' as error; 6 import 'error_test.dart' as error;
7 import 'options_test.dart' as options; 7 import 'options_test.dart' as options;
8 import 'plugin_manager_test.dart' as plugin_manager; 8 import 'plugin_manager_test.dart' as plugin_manager;
9 import 'reporter_test.dart' as reporter; 9 import 'reporter_test.dart' as reporter;
10 import 'sdk_ext_test.dart' as sdk_ext; 10 import 'sdk_ext_test.dart' as sdk_ext;
11 import 'strong_mode_test.dart' as strong_mode; 11 import 'strong_mode_test.dart' as strong_mode;
12 import 'super_mixin_test.dart' as super_mixin; 12 import 'super_mixin_test.dart' as super_mixin;
13 13
14 main() { 14 main() {
15 driver.main(); 15 // TODO(pq): fix tests to run safely on the bots
16 // https://github.com/dart-lang/sdk/issues/25001
17 //driver.main();
18 //sdk_ext.main();
19 //strong_mode.main();
16 error.main(); 20 error.main();
17 options.main(); 21 options.main();
18 plugin_manager.main(); 22 plugin_manager.main();
19 reporter.main(); 23 reporter.main();
20 sdk_ext.main();
21 strong_mode.main();
22 super_mixin.main(); 24 super_mixin.main();
23 } 25 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698