| 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 # Skip entire suite if not running in strong mode. | 5 # Skip entire suite if not running in strong mode. |
| 6 [ ! $strong ] | 6 [ ! $strong ] |
| 7 *: SkipByDesign | 7 *: SkipByDesign |
| 8 | 8 |
| 9 # Skip tests that are not yet strong-mode clean. | 9 # Skip tests that are not yet strong-mode clean. |
| 10 [ $strong ] | 10 [ $strong ] |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 type_checks_in_factory_method_test: Skip | 565 type_checks_in_factory_method_test: Skip |
| 566 type_literal_prefix_call_test: Skip | 566 type_literal_prefix_call_test: Skip |
| 567 type_parameter_test: Skip | 567 type_parameter_test: Skip |
| 568 type_promotion_assign_test: Skip | 568 type_promotion_assign_test: Skip |
| 569 type_promotion_closure_test: Skip | 569 type_promotion_closure_test: Skip |
| 570 type_promotion_functions_test: Skip | 570 type_promotion_functions_test: Skip |
| 571 type_promotion_local_test: Skip | 571 type_promotion_local_test: Skip |
| 572 type_promotion_logical_and_test: Skip | 572 type_promotion_logical_and_test: Skip |
| 573 type_promotion_more_specific_test: Skip | 573 type_promotion_more_specific_test: Skip |
| 574 type_promotion_multiple_test: Skip | 574 type_promotion_multiple_test: Skip |
| 575 type_promotion_parameter_test: Skip | |
| 576 type_variable_bounds2_test: Skip | |
| 577 type_variable_bounds3_test: Skip | |
| 578 type_variable_bounds4_test: Skip | |
| 579 type_variable_bounds_test: Skip | |
| 580 type_variable_conflict2_test: Skip | |
| 581 type_variable_conflict_test: Skip | |
| 582 type_variable_function_type_test: Skip | |
| 583 type_variable_identifier_expression_test: Skip | |
| 584 type_variable_scope2_test: Skip | 575 type_variable_scope2_test: Skip |
| 585 type_variable_scope3_test: Skip | 576 type_variable_scope3_test: Skip |
| 586 type_variable_scope_test: Skip | 577 type_variable_scope_test: Skip |
| 587 type_variable_static_context_negative_test: Skip | 578 type_variable_static_context_negative_test: Skip |
| 588 typed_selector2_test: Skip | 579 typed_selector2_test: Skip |
| 589 unary_plus_negative_test: Skip | 580 unary_plus_negative_test: Skip |
| 590 unbalanced_brace_test: Skip | 581 unbalanced_brace_test: Skip |
| 591 unbound_getter_test: Skip | 582 unbound_getter_test: Skip |
| 592 unhandled_exception_negative_test: Skip | 583 unhandled_exception_negative_test: Skip |
| 593 unresolved_default_constructor_test: Skip | 584 unresolved_default_constructor_test: Skip |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 # not behave correctly at runtime. We cannot record this as "Fail" without | 718 # not behave correctly at runtime. We cannot record this as "Fail" without |
| 728 # confusing the DDC travis bot (as "Fail" is normally used for compile time | 719 # confusing the DDC travis bot (as "Fail" is normally used for compile time |
| 729 # failures of _negative_tests). Remove "Skip" once we have the DDC travis bot | 720 # failures of _negative_tests). Remove "Skip" once we have the DDC travis bot |
| 730 # running on test.dart, OR when we fix dartanalyzer/dartdevc CommandOutput | 721 # running on test.dart, OR when we fix dartanalyzer/dartdevc CommandOutput |
| 731 # classes to invert negative test status in the same way our other tools do. | 722 # classes to invert negative test status in the same way our other tools do. |
| 732 prefix10_negative_test: Skip # Issue 29920 | 723 prefix10_negative_test: Skip # Issue 29920 |
| 733 | 724 |
| 734 [ $compiler == dartdevc && $system == windows ] | 725 [ $compiler == dartdevc && $system == windows ] |
| 735 multiline_strings_test: RuntimeError # Issue 30336 | 726 multiline_strings_test: RuntimeError # Issue 30336 |
| 736 raw_string_test: RuntimeError # Issue 30336 | 727 raw_string_test: RuntimeError # Issue 30336 |
| OLD | NEW |