| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 library_env_test/has_no_mirror_support: RuntimeError | 201 library_env_test/has_no_mirror_support: RuntimeError |
| 202 redirecting_factory_reflection_test: RuntimeError | 202 redirecting_factory_reflection_test: RuntimeError |
| 203 | 203 |
| 204 # dartk: JIT failures (debug) | 204 # dartk: JIT failures (debug) |
| 205 [ $compiler == dartk && $runtime == vm && $mode == debug ] | 205 [ $compiler == dartk && $runtime == vm && $mode == debug ] |
| 206 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 | 206 not_enough_positional_arguments_test/02: Crash # Dartk Issue 28301 |
| 207 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 207 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| 208 | 208 |
| 209 # dartk: precompilation failures | 209 # dartk: precompilation failures |
| 210 [ $compiler == dartkp && $runtime == dart_precompiled ] | 210 [ $compiler == dartkp && $runtime == dart_precompiled ] |
| 211 if_null_assignment_static_test/35: Crash # Dartk Issue 28302 | |
| 212 | 211 |
| 213 # dartk: precompilation failures (debug) | 212 # dartk: precompilation failures (debug) |
| 214 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] | 213 [ $compiler == dartkp && $runtime == dart_precompiled && $mode == debug ] |
| 215 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 | 214 constructor_named_arguments_test/01: Crash # Dartk Issue 28301 |
| 216 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 | 215 not_enough_positional_arguments_test/05: Crash # Dartk Issue 28301 |
| 217 | 216 |
| 218 # New failures after respecting VMOptions in test files | 217 # New failures after respecting VMOptions in test files |
| 219 [ $compiler == dartk || $compiler == dartkp ] | 218 [ $compiler == dartk || $compiler == dartkp ] |
| 220 vm/regress_27671_test: RuntimeError | 219 vm/regress_27671_test: RuntimeError |
| 221 | 220 |
| 222 # New failures after respecting VMOptions in test files | 221 # New failures after respecting VMOptions in test files |
| 223 [ $compiler == dartk && $runtime == vm && $mode == debug] | 222 [ $compiler == dartk && $runtime == vm && $mode == debug] |
| 224 hello_dart_test: Crash # error: expected: cls.is_type_finalized() | 223 hello_dart_test: Crash # error: expected: cls.is_type_finalized() |
| 225 | 224 |
| 226 # New failures after respecting VMOptions in test files | 225 # New failures after respecting VMOptions in test files |
| 227 [ $compiler == dartk && $runtime == vm ] | 226 [ $compiler == dartk && $runtime == vm ] |
| 228 hello_dart_test: CompileTimeError # VMOptions=--compile-all causes us to hit "n
ative function VMServiceIO_Shutdown cannot be resolved" | 227 hello_dart_test: CompileTimeError # VMOptions=--compile-all causes us to hit "n
ative function VMServiceIO_Shutdown cannot be resolved" |
| 229 ct_const2_test: Pass, CompileTimeError # VMOptions=--compile-all causes us to h
it "native function VMServiceIO_Shutdown cannot be resolved" | 228 ct_const2_test: Pass, CompileTimeError # VMOptions=--compile-all causes us to h
it "native function VMServiceIO_Shutdown cannot be resolved" |
| 230 | 229 |
| 231 # Failures during Gardening shift: To be triaged! | 230 # Failures during Gardening shift: To be triaged! |
| 232 [ $compiler == dartk || $compiler == dartkp ] | 231 [ $compiler == dartk || $compiler == dartkp ] |
| 233 runtime_type_function_test: RuntimeError | 232 runtime_type_function_test: RuntimeError |
| 234 | 233 |
| 235 # Triaged checked mode failures | 234 # Triaged checked mode failures |
| 236 [ ($compiler == dartk || $compiler == dartkp) && $checked ] | 235 [ ($compiler == dartk || $compiler == dartkp) && $checked ] |
| 237 language/regress_22728_test: Fail # Dartk Issue 28498 | 236 language/regress_22728_test: Fail # Dartk Issue 28498 |
| OLD | NEW |