| 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 try_catch_on_syntax_test/10: MissingRuntimeError | 237 try_catch_on_syntax_test/10: MissingRuntimeError |
| 238 try_catch_on_syntax_test/11: MissingRuntimeError | 238 try_catch_on_syntax_test/11: MissingRuntimeError |
| 239 try_finally_regress_25654_test: RuntimeError | 239 try_finally_regress_25654_test: RuntimeError |
| 240 type_checks_in_factory_method_test: RuntimeError | 240 type_checks_in_factory_method_test: RuntimeError |
| 241 type_variable_function_type_test: RuntimeError | 241 type_variable_function_type_test: RuntimeError |
| 242 vm/type_cast_vm_test: RuntimeError | 242 vm/type_cast_vm_test: RuntimeError |
| 243 vm/type_vm_test: RuntimeError | 243 vm/type_vm_test: RuntimeError |
| 244 | 244 |
| 245 # dartk: JIT failures | 245 # dartk: JIT failures |
| 246 [ $compiler == dartk && $runtime == vm ] | 246 [ $compiler == dartk && $runtime == vm ] |
| 247 const_evaluation_test/01: RuntimeError | |
| 248 const_locals_test: RuntimeError | 247 const_locals_test: RuntimeError |
| 249 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 | 248 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 |
| 250 const_string_test: RuntimeError # Dartk Issue 28306 | 249 const_string_test: RuntimeError # Dartk Issue 28306 |
| 251 instance_creation_in_function_annotation_test: RuntimeError | |
| 252 library_env_test/has_no_mirror_support: RuntimeError | 250 library_env_test/has_no_mirror_support: RuntimeError |
| 253 redirecting_factory_reflection_test: RuntimeError | 251 redirecting_factory_reflection_test: RuntimeError |
| 254 | 252 |
| 255 # dartk: JIT failures (debug) | 253 # dartk: JIT failures (debug) |
| 256 [ $compiler == dartk && $runtime == vm && $mode == debug ] | 254 [ $compiler == dartk && $runtime == vm && $mode == debug ] |
| 257 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 | 255 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 |
| 258 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 256 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| 259 | 257 |
| 260 # dartk: precompilation failures | 258 # dartk: precompilation failures |
| 261 [ $compiler == dartkp && $runtime == dart_precompiled ] | 259 [ $compiler == dartkp && $runtime == dart_precompiled ] |
| 262 if_null_assignment_static_test/35: Crash # Dartk Issue 28302 | 260 if_null_assignment_static_test/35: Crash # Dartk Issue 28302 |
| 263 string_interpolation7_test: RuntimeError # Dartk Issue 28306 | 261 string_interpolation7_test: RuntimeError # Dartk Issue 28306 |
| 264 | 262 |
| 265 # dartk: precompilation failures (debug) | 263 # dartk: precompilation failures (debug) |
| 266 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] | 264 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] |
| 267 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 | 265 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 |
| 268 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 266 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| OLD | NEW |