OLD | NEW |
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 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2045 'corelib/package_resource_test', | 2045 'corelib/package_resource_test', |
2046 'corelib/print_test_01_multi', | 2046 'corelib/print_test_01_multi', |
2047 'corelib/print_test_none_multi', | 2047 'corelib/print_test_none_multi', |
2048 'corelib/splay_tree_test', | 2048 'corelib/splay_tree_test', |
2049 'corelib/string_base_vm_test', | 2049 'corelib/string_base_vm_test', |
2050 'corelib/string_from_environment3_test_01_multi', | 2050 'corelib/string_from_environment3_test_01_multi', |
2051 'corelib/string_from_environment3_test_02_multi', | 2051 'corelib/string_from_environment3_test_02_multi', |
2052 'corelib/string_from_environment3_test_03_multi', | 2052 'corelib/string_from_environment3_test_03_multi', |
2053 'corelib/string_from_environment3_test_04_multi', | 2053 'corelib/string_from_environment3_test_04_multi', |
2054 'corelib/string_from_environment3_test_05_multi', | 2054 'corelib/string_from_environment3_test_05_multi', |
2055 'corelib/string_replace_test', | |
2056 'corelib/symbol_reserved_word_test_04_multi', | 2055 'corelib/symbol_reserved_word_test_04_multi', |
2057 'corelib/symbol_reserved_word_test_05_multi', | 2056 'corelib/symbol_reserved_word_test_05_multi', |
2058 'corelib/symbol_reserved_word_test_07_multi', | 2057 'corelib/symbol_reserved_word_test_07_multi', |
2059 'corelib/symbol_reserved_word_test_08_multi', | 2058 'corelib/symbol_reserved_word_test_08_multi', |
2060 'corelib/symbol_reserved_word_test_10_multi', | 2059 'corelib/symbol_reserved_word_test_10_multi', |
2061 'corelib/symbol_reserved_word_test_11_multi', | 2060 'corelib/symbol_reserved_word_test_11_multi', |
2062 'corelib/symbol_test_01_multi', | 2061 'corelib/symbol_test_01_multi', |
2063 'corelib/symbol_test_02_multi', | 2062 'corelib/symbol_test_02_multi', |
2064 'corelib/symbol_test_03_multi', | 2063 'corelib/symbol_test_03_multi', |
2065 'lib/async/async_await_sync_completer_test', | 2064 'lib/async/async_await_sync_completer_test', |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2402 'lib/html/mutationobserver_test', | 2401 'lib/html/mutationobserver_test', |
2403 'lib/html/postmessage_structured_test', | 2402 'lib/html/postmessage_structured_test', |
2404 'lib/html/resource_http_test', | 2403 'lib/html/resource_http_test', |
2405 'lib/html/transferables_test', | 2404 'lib/html/transferables_test', |
2406 'lib/html/webgl_1_test', | 2405 'lib/html/webgl_1_test', |
2407 'lib/html/wrapping_collections_test', | 2406 'lib/html/wrapping_collections_test', |
2408 // TODO(jmesserly): these are both under "dart:html" as well. | 2407 // TODO(jmesserly): these are both under "dart:html" as well. |
2409 'js_test', | 2408 'js_test', |
2410 'js_util_test' | 2409 'js_util_test' |
2411 ].map((p) => p.replaceAll('/', path.separator))); | 2410 ].map((p) => p.replaceAll('/', path.separator))); |
OLD | NEW |