| 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 # Sections in this file should contain "$runtime == vm". | 5 # Sections in this file should contain "$runtime == vm". |
| 6 | 6 |
| 7 # The VM does not implement the Dart 2.0 static type errors yet. | 7 # The VM does not implement the Dart 2.0 static type errors yet. |
| 8 [ $runtime == vm ] | 8 [ $runtime == vm ] |
| 9 abstract_beats_arguments_test: MissingCompileTimeError | 9 abstract_beats_arguments_test: MissingCompileTimeError |
| 10 abstract_exact_selector_test/01: MissingCompileTimeError | 10 abstract_exact_selector_test/01: MissingCompileTimeError |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 bad_named_parameters_test/04: MissingCompileTimeError | 42 bad_named_parameters_test/04: MissingCompileTimeError |
| 43 bad_named_parameters_test/05: MissingCompileTimeError | 43 bad_named_parameters_test/05: MissingCompileTimeError |
| 44 bad_override_test/01: MissingCompileTimeError | 44 bad_override_test/01: MissingCompileTimeError |
| 45 bad_override_test/02: MissingCompileTimeError | 45 bad_override_test/02: MissingCompileTimeError |
| 46 bad_override_test/06: MissingCompileTimeError | 46 bad_override_test/06: MissingCompileTimeError |
| 47 bit_operations_test/01: MissingCompileTimeError | 47 bit_operations_test/01: MissingCompileTimeError |
| 48 bit_operations_test/02: MissingCompileTimeError | 48 bit_operations_test/02: MissingCompileTimeError |
| 49 bit_operations_test/03: MissingCompileTimeError | 49 bit_operations_test/03: MissingCompileTimeError |
| 50 bit_operations_test/04: MissingCompileTimeError | 50 bit_operations_test/04: MissingCompileTimeError |
| 51 built_in_identifier_prefix_test: CompileTimeError | 51 built_in_identifier_prefix_test: CompileTimeError |
| 52 cast_test/04: MissingCompileTimeError |
| 53 cast_test/05: MissingCompileTimeError |
| 52 | 54 |
| 53 # The VM and does not implement the Dart 2.0 runtime checks yet unless | 55 # The VM and does not implement the Dart 2.0 runtime checks yet unless |
| 54 # --checked is explicitly passed). | 56 # --checked is explicitly passed). |
| 55 [ $runtime == vm && !$checked ] | 57 [ $runtime == vm && !$checked ] |
| 56 bool_check_test: RuntimeError | 58 bool_check_test: RuntimeError |
| 57 bool_condition_check_test: RuntimeError | 59 bool_condition_check_test: RuntimeError |
| 58 | 60 |
| 59 # The VM doesn't enforce that potentially const expressions are actually | 61 # The VM doesn't enforce that potentially const expressions are actually |
| 60 # const expressions when the constructor is called with `const`. | 62 # const expressions when the constructor is called with `const`. |
| 61 [ $runtime == vm && $compiler == none && $checked ] | 63 [ $runtime == vm && $compiler == none && $checked ] |
| 62 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 64 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 63 | 65 |
| 64 [ $compiler == dartk && $runtime == vm ] | 66 [ $compiler == dartk && $runtime == vm ] |
| 65 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError | 67 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError |
| 66 | 68 |
| 67 [ $compiler == none && $runtime == vm && !$checked ] | 69 [ $compiler == none && $runtime == vm && !$checked ] |
| 68 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError | 70 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError |
| 69 assertion_initializer_const_error_test/01: MissingCompileTimeError | 71 assertion_initializer_const_error_test/01: MissingCompileTimeError |
| 70 assertion_initializer_const_function_error_test/01: MissingCompileTimeError | 72 assertion_initializer_const_function_error_test/01: MissingCompileTimeError |
| 71 | 73 |
| 72 [ $compiler == app_jit && $runtime == vm && !$checked ] | 74 [ $compiler == app_jit && $runtime == vm && !$checked ] |
| 73 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError | 75 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError |
| 74 assertion_initializer_const_error_test/01: MissingCompileTimeError | 76 assertion_initializer_const_error_test/01: MissingCompileTimeError |
| 75 assertion_initializer_const_function_error_test/01: MissingCompileTimeError | 77 assertion_initializer_const_function_error_test/01: MissingCompileTimeError |
| OLD | NEW |