| 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 [ $compiler == dartkp ] | 5 [ $compiler == dartkp ] |
| 6 *: Skip # Non-kernel also skips precompiled mode. | 6 *: Skip # Non-kernel also skips precompiled mode. |
| 7 | 7 |
| 8 [ $compiler == dartk ] | 8 [ $compiler == dartk ] |
| 9 ### | 9 ### |
| 10 ### Kernel works slightly different. There are kernel specific versions. | 10 ### Kernel works slightly different. There are kernel specific versions. |
| 11 ### These are the non-kernel specific versions so skip these tests. | 11 ### These are the non-kernel specific versions so skip these tests. |
| 12 ### | 12 ### |
| 13 add_breakpoint_rpc_test: SkipByDesign # non-kernel specific version of add_break
point_rpc_kernel_test. | 13 add_breakpoint_rpc_test: SkipByDesign # non-kernel specific version of add_break
point_rpc_kernel_test. |
| 14 | 14 |
| 15 ### | 15 ### |
| 16 ### Kernel works slightly different. At least for now allow errors. | 16 ### Kernel works slightly different. At least for now allow errors. |
| 17 ### | 17 ### |
| 18 library_dependency_test: RuntimeError # There are no imports and exports in kern
el. | |
| 19 get_isolate_after_language_error_test: CompileTimeError | 18 get_isolate_after_language_error_test: CompileTimeError |
| 20 developer_extension_test: CompileTimeError | 19 developer_extension_test: CompileTimeError |
| 21 step_through_arithmetic_test: RuntimeError # probably constant evaluator pre-eva
luating e.g. 1+2 | 20 step_through_arithmetic_test: RuntimeError # probably constant evaluator pre-eva
luating e.g. 1+2 |
| 22 | 21 |
| 23 # These 3 tests fail with 'dart:vmservice_io': error: [...] native function | 22 # These 3 tests fail with 'dart:vmservice_io': error: [...] native function |
| 24 # 'VMServiceIO_Shutdown' (0 arguments) cannot be found | 23 # 'VMServiceIO_Shutdown' (0 arguments) cannot be found |
| 25 # because of '--compile_all' | 24 # because of '--compile_all' |
| 26 capture_stdio_test: CompileTimeError | 25 capture_stdio_test: CompileTimeError |
| 27 address_mapper_test: CompileTimeError | 26 address_mapper_test: CompileTimeError |
| 28 | 27 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 ### | 62 ### |
| 64 object_graph_vm_test: RuntimeError | 63 object_graph_vm_test: RuntimeError |
| 65 | 64 |
| 66 # Inherited from service.status | 65 # Inherited from service.status |
| 67 isolate_lifecycle_test: Pass, RuntimeError | 66 isolate_lifecycle_test: Pass, RuntimeError |
| 68 | 67 |
| 69 | 68 |
| 70 [ $compiler == dartk && $mode == debug ] | 69 [ $compiler == dartk && $mode == debug ] |
| 71 isolate_lifecycle_test: Skip # Flaky. | 70 isolate_lifecycle_test: Skip # Flaky. |
| 72 pause_idle_isolate_test: Skip # Flaky | 71 pause_idle_isolate_test: Skip # Flaky |
| 72 |
| 73 # Deferred loading kernel issue 28335. |
| 74 [ $compiler == dartk ] |
| 75 library_dependency_test: CompileTimeError # Deferred loading kernel issue 28335. |
| OLD | NEW |