| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 /// Tests code generation. | 5 /// Tests code generation. |
| 6 /// | 6 /// |
| 7 /// Runs Dart Dev Compiler on all input in the `codegen` directory and checks | 7 /// Runs Dart Dev Compiler on all input in the `codegen` directory and checks |
| 8 /// that the output is what we expected. | 8 /// that the output is what we expected. |
| 9 library dev_compiler.test.codegen_test; | 9 library dev_compiler.test.codegen_test; |
| 10 | 10 |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 } | 393 } |
| 394 | 394 |
| 395 /// Tests that, due to bugs, are strong-mode clean only on some platforms. | 395 /// Tests that, due to bugs, are strong-mode clean only on some platforms. |
| 396 final _inconsistentTests = new Set<String>.from([ | 396 final _inconsistentTests = new Set<String>.from([ |
| 397 // This test is clean on windows, but not linux/mac due to newline encoding. | 397 // This test is clean on windows, but not linux/mac due to newline encoding. |
| 398 // See: https://github.com/dart-lang/sdk/issues/27224 | 398 // See: https://github.com/dart-lang/sdk/issues/27224 |
| 399 'language/multiline_newline_test_02_multi', | 399 'language/multiline_newline_test_02_multi', |
| 400 ].map((p) => p.replaceAll('/', path.separator))); | 400 ].map((p) => p.replaceAll('/', path.separator))); |
| 401 | 401 |
| 402 final _crashingTests = new Set<String>.from([ | 402 final _crashingTests = new Set<String>.from([ |
| 403 'language/generic_methods_generic_class_tearoff_test', | |
| 404 'language/generic_methods_named_parameters_test', | |
| 405 'language/generic_methods_optional_parameters_test', | |
| 406 'language/generic_methods_tearoff_specialization_test', | |
| 407 'language/generic_methods_unused_parameter_test', | |
| 408 | |
| 409 // TODO(vsm): Fix these - they import files from a different directory | 403 // TODO(vsm): Fix these - they import files from a different directory |
| 410 // - this triggers an invalid library root build error. | 404 // - this triggers an invalid library root build error. |
| 411 'lib/html/custom/attribute_changed_callback_test', | 405 'lib/html/custom/attribute_changed_callback_test', |
| 412 'lib/html/custom/constructor_calls_created_synchronously_test', | 406 'lib/html/custom/constructor_calls_created_synchronously_test', |
| 413 'lib/html/custom/entered_left_view_test', | 407 'lib/html/custom/entered_left_view_test', |
| 414 'lib/html/custom/js_custom_test', | 408 'lib/html/custom/js_custom_test', |
| 415 'lib/html/custom/mirrors_test', | 409 'lib/html/custom/mirrors_test', |
| 416 'lib/html/custom/regress_194523002_test', | 410 'lib/html/custom/regress_194523002_test', |
| 417 ].map((p) => p.replaceAll('/', path.separator))); | 411 ].map((p) => p.replaceAll('/', path.separator))); |
| OLD | NEW |