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

Side by Side Diff: pkg/dev_compiler/test/compile_error_tests.dart

Issue 2993533002: Fix ddc status (Closed)
Patch Set: Created 3 years, 4 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
« no previous file with comments | « pkg/dev_compiler/test/browser/language_tests.js ('k') | 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 import 'dart:collection'; 1 import 'dart:collection';
2 import 'package:path/path.dart' as path; 2 import 'package:path/path.dart' as path;
3 3
4 /// The set of tests that are known to fail with compile errors. 4 /// The set of tests that are known to fail with compile errors.
5 /// 5 ///
6 /// This may be because the test hasn't been made strong mode clean yet, or 6 /// This may be because the test hasn't been made strong mode clean yet, or
7 /// because of bugs or missing features in strong mode or analyzer itself. 7 /// because of bugs or missing features in strong mode or analyzer itself.
8 final compileErrorTests = new HashSet<String>.from([ 8 final compileErrorTests = new HashSet<String>.from([
9 'language/abstract_exact_selector_test_01_multi', 9 'language/abstract_exact_selector_test_01_multi',
10 'language/abstract_factory_constructor_test_00_multi', 10 'language/abstract_factory_constructor_test_00_multi',
(...skipping 2024 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 'corelib/iterable_element_at_test', 2035 'corelib/iterable_element_at_test',
2036 'corelib/iterable_fold_test', 2036 'corelib/iterable_fold_test',
2037 'corelib/iterable_mapping_test', 2037 'corelib/iterable_mapping_test',
2038 'corelib/iterable_reduce_test', 2038 'corelib/iterable_reduce_test',
2039 'corelib/iterable_to_list_test', 2039 'corelib/iterable_to_list_test',
2040 'corelib/iterable_to_set_test', 2040 'corelib/iterable_to_set_test',
2041 'corelib/linked_hash_map_from_iterable_test', 2041 'corelib/linked_hash_map_from_iterable_test',
2042 'corelib/list_contains_argument_order_test', 2042 'corelib/list_contains_argument_order_test',
2043 'corelib/list_index_of2_test', 2043 'corelib/list_index_of2_test',
2044 'corelib/list_unmodifiable_test', 2044 'corelib/list_unmodifiable_test',
2045 'corelib/map_test',
2046 'corelib/num_clamp_test',
2047 'corelib/package_resource_test', 2045 'corelib/package_resource_test',
2048 'corelib/print_test_01_multi', 2046 'corelib/print_test_01_multi',
2049 'corelib/print_test_none_multi', 2047 'corelib/print_test_none_multi',
2050 'corelib/splay_tree_test', 2048 'corelib/splay_tree_test',
2051 'corelib/string_from_environment3_test_01_multi', 2049 'corelib/string_from_environment3_test_01_multi',
2052 'corelib/string_from_environment3_test_02_multi', 2050 'corelib/string_from_environment3_test_02_multi',
2053 'corelib/string_from_environment3_test_03_multi', 2051 'corelib/string_from_environment3_test_03_multi',
2054 'corelib/string_from_environment3_test_04_multi', 2052 'corelib/string_from_environment3_test_04_multi',
2055 'corelib/string_from_environment3_test_05_multi', 2053 'corelib/string_from_environment3_test_05_multi',
2056 'corelib/symbol_reserved_word_test_04_multi', 2054 'corelib/symbol_reserved_word_test_04_multi',
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
2398 'lib/html/mutationobserver_test', 2396 'lib/html/mutationobserver_test',
2399 'lib/html/postmessage_structured_test', 2397 'lib/html/postmessage_structured_test',
2400 'lib/html/resource_http_test', 2398 'lib/html/resource_http_test',
2401 'lib/html/transferables_test', 2399 'lib/html/transferables_test',
2402 'lib/html/webgl_1_test', 2400 'lib/html/webgl_1_test',
2403 'lib/html/wrapping_collections_test', 2401 'lib/html/wrapping_collections_test',
2404 // TODO(jmesserly): these are both under "dart:html" as well. 2402 // TODO(jmesserly): these are both under "dart:html" as well.
2405 'js_test', 2403 'js_test',
2406 'js_util_test' 2404 'js_util_test'
2407 ].map((p) => p.replaceAll('/', path.separator))); 2405 ].map((p) => p.replaceAll('/', path.separator)));
OLDNEW
« no previous file with comments | « pkg/dev_compiler/test/browser/language_tests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698