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

Unified Diff: pkg/analyzer/test/src/summary/test_all.dart

Issue 2968233002: Add code to run more tests from test_all (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/test/src/dart/analysis/test_all.dart ('k') | pkg/analyzer/test/src/task/strong/test_all.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/summary/test_all.dart
diff --git a/pkg/analyzer/test/src/summary/test_all.dart b/pkg/analyzer/test/src/summary/test_all.dart
index 05e82689357c6758f9fe600108dfcdcee75f6942..fb3bb277c2caad4598457c7aa2c5c0a87345424a 100644
--- a/pkg/analyzer/test/src/summary/test_all.dart
+++ b/pkg/analyzer/test/src/summary/test_all.dart
@@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library test.src.serialization.test_all;
-
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'in_summary_source_test.dart' as in_summary_source_test;
@@ -15,8 +13,8 @@ import 'resynthesize_ast_test.dart' as resynthesize_ast_test;
import 'summarize_ast_strong_test.dart' as summarize_ast_strong_test;
import 'summarize_ast_test.dart' as summarize_ast_test;
import 'top_level_inference_test.dart' as top_level_inference_test;
+//import 'summarize_fasta_test.dart' as summarize_fasta_test;
-/// Utility for manually running all tests.
main() {
defineReflectiveSuite(() {
in_summary_source_test.main();
@@ -27,6 +25,10 @@ main() {
resynthesize_ast_test.main();
summarize_ast_strong_test.main();
summarize_ast_test.main();
+ // TODO(brianwilkerson) Re-enable these tests.
+ // This test file contains many failures. I'm assuming that they are not
+ // marked as failing to make it easier to find and fix them.
scheglov 2017/07/06 18:40:56 Actually I think that we decide not to generate su
+// summarize_fasta_test.main();
top_level_inference_test.main();
}, name: 'summary');
}
« no previous file with comments | « pkg/analyzer/test/src/dart/analysis/test_all.dart ('k') | pkg/analyzer/test/src/task/strong/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698