| 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 # These tests currently take too long. Remove when they are fixed. | 5 # These tests currently take too long. Remove when they are fixed. |
| 6 [ $compiler == dartk || $compiler == dartkp ] | 6 [ $compiler == dartk || $compiler == dartkp ] |
| 7 large_class_declaration_test: SkipSlow # KernelVM Issue 28312 | 7 large_class_declaration_test: SkipSlow # KernelVM Issue 28312 |
| 8 | 8 |
| 9 ############################################################################### | 9 ############################################################################### |
| 10 # Dartk Entries | 10 # Dartk Entries |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 try_catch_on_syntax_test/10: MissingRuntimeError | 234 try_catch_on_syntax_test/10: MissingRuntimeError |
| 235 try_catch_on_syntax_test/11: MissingRuntimeError | 235 try_catch_on_syntax_test/11: MissingRuntimeError |
| 236 try_finally_regress_25654_test: RuntimeError | 236 try_finally_regress_25654_test: RuntimeError |
| 237 type_checks_in_factory_method_test: RuntimeError | 237 type_checks_in_factory_method_test: RuntimeError |
| 238 type_variable_function_type_test: RuntimeError | 238 type_variable_function_type_test: RuntimeError |
| 239 vm/type_cast_vm_test: RuntimeError | 239 vm/type_cast_vm_test: RuntimeError |
| 240 vm/type_vm_test: RuntimeError | 240 vm/type_vm_test: RuntimeError |
| 241 | 241 |
| 242 # dartk: JIT failures | 242 # dartk: JIT failures |
| 243 [ $compiler == dartk && $runtime == vm ] | 243 [ $compiler == dartk && $runtime == vm ] |
| 244 const_evaluation_test/01: RuntimeError | |
| 245 const_locals_test: RuntimeError | 244 const_locals_test: RuntimeError |
| 246 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 | 245 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 |
| 247 const_string_test: RuntimeError # Dartk Issue 28306 | 246 const_string_test: RuntimeError # Dartk Issue 28306 |
| 248 instance_creation_in_function_annotation_test: RuntimeError | |
| 249 library_env_test/has_no_mirror_support: RuntimeError | 247 library_env_test/has_no_mirror_support: RuntimeError |
| 250 redirecting_factory_reflection_test: RuntimeError | 248 redirecting_factory_reflection_test: RuntimeError |
| 251 | 249 |
| 252 # dartk: JIT failures (debug) | 250 # dartk: JIT failures (debug) |
| 253 [ $compiler == dartk && $runtime == vm && $mode == debug ] | 251 [ $compiler == dartk && $runtime == vm && $mode == debug ] |
| 254 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 | 252 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 |
| 255 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 253 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| 256 | 254 |
| 257 # dartk: precompilation failures | 255 # dartk: precompilation failures |
| 258 [ $compiler == dartkp && $runtime == dart_precompiled ] | 256 [ $compiler == dartkp && $runtime == dart_precompiled ] |
| 259 if_null_assignment_static_test/35: Crash # Dartk Issue 28302 | 257 if_null_assignment_static_test/35: Crash # Dartk Issue 28302 |
| 260 string_interpolation7_test: RuntimeError # Dartk Issue 28306 | 258 string_interpolation7_test: RuntimeError # Dartk Issue 28306 |
| 261 | 259 |
| 262 # dartk: precompilation failures (debug) | 260 # dartk: precompilation failures (debug) |
| 263 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] | 261 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] |
| 264 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 | 262 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 |
| 265 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 263 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| OLD | NEW |