| 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 && ! $checked) ] | 7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co
mpiler == dart2analyzer && ! $strong && ! $checked) ] |
| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 [ $compiler == dartdevc ] | 225 [ $compiler == dartdevc ] |
| 226 assertion_initializer_test: CompileTimeError | 226 assertion_initializer_test: CompileTimeError |
| 227 assertion_initializer_const_error2_test/none: CompileTimeError | 227 assertion_initializer_const_error2_test/none: CompileTimeError |
| 228 assertion_initializer_const_function_test/01: CompileTimeError | 228 assertion_initializer_const_function_test/01: CompileTimeError |
| 229 | 229 |
| 230 [ $compiler == dartdevc && $runtime != none ] | 230 [ $compiler == dartdevc && $runtime != none ] |
| 231 assert_message_test: RuntimeError # Looks like bug in dartdevc codegen. | 231 assert_message_test: RuntimeError # Looks like bug in dartdevc codegen. |
| 232 | 232 |
| 233 [ $compiler == dartk && $runtime == vm ] | 233 [ $compiler == dartk && $runtime == vm ] |
| 234 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError | 234 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError |
| 235 assertion_test: RuntimeError | |
| 236 | 235 |
| 237 [ $mode == product ] | 236 [ $mode == product ] |
| 238 assertion_test: SkipByDesign # Requires checked mode. | 237 assertion_test: SkipByDesign # Requires checked mode. |
| 239 | 238 |
| 240 [$compiler == precompiler && $runtime == dart_precompiled && !$checked] | 239 [$compiler == precompiler && $runtime == dart_precompiled && !$checked] |
| 241 assertion_initializer_const_error2_test/cc01: Pass, OK | 240 assertion_initializer_const_error2_test/cc01: Pass, OK |
| 242 assertion_initializer_const_error2_test/cc02: CompileTimeError | 241 assertion_initializer_const_error2_test/cc02: CompileTimeError |
| 243 assertion_initializer_const_error2_test/cc03: Pass, OK | 242 assertion_initializer_const_error2_test/cc03: Pass, OK |
| 244 assertion_initializer_const_error2_test/cc04: Pass, OK | 243 assertion_initializer_const_error2_test/cc04: Pass, OK |
| 245 assertion_initializer_const_error2_test/cc05: Pass, OK | 244 assertion_initializer_const_error2_test/cc05: Pass, OK |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 async_await_syntax_test/d10a: Crash | 507 async_await_syntax_test/d10a: Crash |
| 509 async_return_types_test/tooManyTypeParameters: CompileTimeError | 508 async_return_types_test/tooManyTypeParameters: CompileTimeError |
| 510 | 509 |
| 511 # Look like bugs. | 510 # Look like bugs. |
| 512 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 | 511 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 |
| 513 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 | 512 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 |
| 514 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 | 513 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 |
| 515 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 | 514 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 |
| 516 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 | 515 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 |
| 517 async_star_no_cancel_test: Skip # Flutter Issue 9110 | 516 async_star_no_cancel_test: Skip # Flutter Issue 9110 |
| OLD | NEW |