| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 prefix21_test: RuntimeError | 223 prefix21_test: RuntimeError |
| 224 redirecting_constructor_initializer_test: RuntimeError | 224 redirecting_constructor_initializer_test: RuntimeError |
| 225 regress_22443_test: RuntimeError # Deferred Loading Issue 28335 | 225 regress_22443_test: RuntimeError # Deferred Loading Issue 28335 |
| 226 regress_23408_test: RuntimeError # Deferred Loading Issue 28335 | 226 regress_23408_test: RuntimeError # Deferred Loading Issue 28335 |
| 227 regress_28278_test: RuntimeError # Mirrors Issue | 227 regress_28278_test: RuntimeError # Mirrors Issue |
| 228 script1_negative_test: Fail | 228 script1_negative_test: Fail |
| 229 script2_negative_test: Fail | 229 script2_negative_test: Fail |
| 230 setter_no_getter_call_test/none: RuntimeError | 230 setter_no_getter_call_test/none: RuntimeError |
| 231 static_setter_get_test/01: RuntimeError | 231 static_setter_get_test/01: RuntimeError |
| 232 switch7_negative_test: Fail | 232 switch7_negative_test: Fail |
| 233 switch_try_catch_test: RuntimeError | 233 try_catch_on_syntax_test/10: MissingRuntimeError # Dartk Issue 28410 |
| 234 try_catch_on_syntax_test/10: MissingRuntimeError | 234 try_catch_on_syntax_test/11: MissingRuntimeError # Dartk Issue 28410 |
| 235 try_catch_on_syntax_test/11: MissingRuntimeError | |
| 236 try_finally_regress_25654_test: RuntimeError | |
| 237 type_checks_in_factory_method_test: RuntimeError | 235 type_checks_in_factory_method_test: RuntimeError |
| 238 type_variable_function_type_test: RuntimeError | 236 type_variable_function_type_test: RuntimeError |
| 239 vm/type_cast_vm_test: RuntimeError | 237 vm/type_cast_vm_test: RuntimeError |
| 240 vm/type_vm_test: RuntimeError | 238 vm/type_vm_test: RuntimeError |
| 241 | 239 |
| 242 # dartk: JIT failures | 240 # dartk: JIT failures |
| 243 [ $compiler == dartk && $runtime == vm ] | 241 [ $compiler == dartk && $runtime == vm ] |
| 244 const_locals_test: RuntimeError | 242 const_locals_test: RuntimeError |
| 245 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 | 243 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 |
| 246 const_string_test: RuntimeError # Dartk Issue 28306 | 244 const_string_test: RuntimeError # Dartk Issue 28306 |
| 247 library_env_test/has_no_mirror_support: RuntimeError | 245 library_env_test/has_no_mirror_support: RuntimeError |
| 248 redirecting_factory_reflection_test: RuntimeError | 246 redirecting_factory_reflection_test: RuntimeError |
| 249 | 247 |
| 250 # dartk: JIT failures (debug) | 248 # dartk: JIT failures (debug) |
| 251 [ $compiler == dartk && $runtime == vm && $mode == debug ] | 249 [ $compiler == dartk && $runtime == vm && $mode == debug ] |
| 252 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 | 250 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 |
| 253 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 251 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| 254 | 252 |
| 255 # dartk: precompilation failures | 253 # dartk: precompilation failures |
| 256 [ $compiler == dartkp && $runtime == dart_precompiled ] | 254 [ $compiler == dartkp && $runtime == dart_precompiled ] |
| 257 if_null_assignment_static_test/35: Crash # Dartk Issue 28302 | 255 if_null_assignment_static_test/35: Crash # Dartk Issue 28302 |
| 258 string_interpolation7_test: RuntimeError # Dartk Issue 28306 | 256 string_interpolation7_test: RuntimeError # Dartk Issue 28306 |
| 259 | 257 |
| 260 # dartk: precompilation failures (debug) | 258 # dartk: precompilation failures (debug) |
| 261 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] | 259 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] |
| 262 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 | 260 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 |
| 263 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 261 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| OLD | NEW |