| 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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 initializing_formal_final_test: RuntimeError # Issue 29920 | 703 initializing_formal_final_test: RuntimeError # Issue 29920 |
| 704 instance_creation_in_function_annotation_test: RuntimeError # Issue 29920 | 704 instance_creation_in_function_annotation_test: RuntimeError # Issue 29920 |
| 705 instanceof2_test: RuntimeError # Issue 29920 | 705 instanceof2_test: RuntimeError # Issue 29920 |
| 706 instanceof4_test/01: RuntimeError # Issue 29920 | 706 instanceof4_test/01: RuntimeError # Issue 29920 |
| 707 instanceof4_test/none: RuntimeError # Issue 29920 | 707 instanceof4_test/none: RuntimeError # Issue 29920 |
| 708 integer_division_by_zero_test: RuntimeError # Issue 29920 | 708 integer_division_by_zero_test: RuntimeError # Issue 29920 |
| 709 issue23244_test: RuntimeError # Issue 29920 | 709 issue23244_test: RuntimeError # Issue 29920 |
| 710 lazy_static3_test: RuntimeError # Issue 29920 | 710 lazy_static3_test: RuntimeError # Issue 29920 |
| 711 left_shift_test: RuntimeError # Issue 29920 | 711 left_shift_test: RuntimeError # Issue 29920 |
| 712 list_is_test: RuntimeError # Issue 29920 | 712 list_is_test: RuntimeError # Issue 29920 |
| 713 list_literal3_test: RuntimeError # Issue 29920 | |
| 714 main_test/03: MissingRuntimeError # Issue 29920 | 713 main_test/03: MissingRuntimeError # Issue 29920 |
| 715 map_literal10_test: RuntimeError # Issue 29920 | 714 map_literal10_test: RuntimeError # Issue 29920 |
| 716 map_literal7_test: RuntimeError # Issue 29920 | 715 map_literal7_test: RuntimeError # Issue 29920 |
| 717 mint_arithmetic_test: RuntimeError # Issue 29920 | 716 mint_arithmetic_test: RuntimeError # Issue 29920 |
| 718 modulo_test: RuntimeError # Issue 29920 | 717 modulo_test: RuntimeError # Issue 29920 |
| 719 named_parameter_clash_test: RuntimeError # Issue 29920 | 718 named_parameter_clash_test: RuntimeError # Issue 29920 |
| 720 nan_identical_test: RuntimeError # Issue 29920 | 719 nan_identical_test: RuntimeError # Issue 29920 |
| 721 nested_switch_label_test: RuntimeError # Issue 29920 | 720 nested_switch_label_test: RuntimeError # Issue 29920 |
| 722 number_identity2_test: RuntimeError # Issue 29920 | 721 number_identity2_test: RuntimeError # Issue 29920 |
| 723 numbers_test: RuntimeError # Issue 29920 | 722 numbers_test: RuntimeError # Issue 29920 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 737 # not behave correctly at runtime. We cannot record this as "Fail" without | 736 # not behave correctly at runtime. We cannot record this as "Fail" without |
| 738 # confusing the DDC travis bot (as "Fail" is normally used for compile time | 737 # confusing the DDC travis bot (as "Fail" is normally used for compile time |
| 739 # failures of _negative_tests). Remove "Skip" once we have the DDC travis bot | 738 # failures of _negative_tests). Remove "Skip" once we have the DDC travis bot |
| 740 # running on test.dart, OR when we fix dartanalyzer/dartdevc CommandOutput | 739 # running on test.dart, OR when we fix dartanalyzer/dartdevc CommandOutput |
| 741 # classes to invert negative test status in the same way our other tools do. | 740 # classes to invert negative test status in the same way our other tools do. |
| 742 prefix10_negative_test: Skip # Issue 29920 | 741 prefix10_negative_test: Skip # Issue 29920 |
| 743 | 742 |
| 744 [ $compiler == dartdevc && $system == windows ] | 743 [ $compiler == dartdevc && $system == windows ] |
| 745 multiline_strings_test: RuntimeError # Issue 30336 | 744 multiline_strings_test: RuntimeError # Issue 30336 |
| 746 raw_string_test: RuntimeError # Issue 30336 | 745 raw_string_test: RuntimeError # Issue 30336 |
| OLD | NEW |