| OLD | NEW |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, 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 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. | 5 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. |
| 6 # Analyzer does, but only when "--strong" is used. | 6 # Analyzer does, but only when "--strong" is used. |
| 7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co
mpiler == dart2analyzer && ! $strong) ] | 7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co
mpiler == dart2analyzer && ! $strong) ] |
| 8 abstract_beats_arguments_test: MissingCompileTimeError | 8 abstract_beats_arguments_test: MissingCompileTimeError |
| 9 abstract_exact_selector_test/01: MissingCompileTimeError | 9 abstract_exact_selector_test/01: MissingCompileTimeError |
| 10 abstract_factory_constructor_test/00: MissingCompileTimeError | 10 abstract_factory_constructor_test/00: MissingCompileTimeError |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 aborting_switch_case_test: Crash | 50 aborting_switch_case_test: Crash |
| 51 abstract_exact_selector_test/none: Crash | 51 abstract_exact_selector_test/none: Crash |
| 52 abstract_getter_test/01: Crash | 52 abstract_getter_test/01: Crash |
| 53 abstract_method_test: Crash | 53 abstract_method_test: Crash |
| 54 abstract_object_method_test: Crash | 54 abstract_object_method_test: Crash |
| 55 arg_param_trailing_comma_test/none: Crash | 55 arg_param_trailing_comma_test/none: Crash |
| 56 arithmetic_test: Crash | 56 arithmetic_test: Crash |
| 57 | 57 |
| 58 [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] | 58 [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] |
| 59 abstract_exact_selector_test/01: Crash | 59 abstract_exact_selector_test/01: Crash |
| 60 |
| 61 [ $compiler == dart2js && $dart2js_with_kernel && $minified ] |
| 62 abstract_beats_arguments_test: Crash |
| 63 abstract_exact_selector_test/01: Crash |
| 64 abstract_getter2_test: Crash |
| 65 abstract_syntax_test/00: Crash |
| 66 abstract_syntax_test/none: Crash |
| 67 accessor_conflict_export2_test: Crash |
| 68 accessor_conflict_export_test: Crash |
| 69 accessor_conflict_import2_test: Crash |
| 70 accessor_conflict_import_prefixed2_test: Crash |
| 71 accessor_conflict_import_prefixed_test: Crash |
| 72 accessor_conflict_import_test: Crash |
| 73 ackermann_test: Crash |
| 74 adjacent_const_string_literals_test: Crash |
| 75 adjacent_string_literals_test: Crash |
| 76 allocate_large_object_test: Crash |
| 77 allocate_test: Crash |
| 78 allocation_sinking_inlining_test: Crash |
| 79 and_operation_on_non_integer_operand_test: Crash |
| 80 arithmetic_canonicalization_test: Crash |
| 81 arithmetic_smi_overflow_test: Crash |
| OLD | NEW |