| 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. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ### | 28 ### |
| 29 ### Not supported for now at least | 29 ### Not supported for now at least |
| 30 ### | 30 ### |
| 31 *_reload_*: Skip # no reload support for now | 31 *_reload_*: Skip # no reload support for now |
| 32 eval_internal_class_test: Skip # no evaluation test for now | 32 eval_internal_class_test: Skip # no evaluation test for now |
| 33 evaluate_*: Skip # no evaluation test for now | 33 evaluate_*: Skip # no evaluation test for now |
| 34 | 34 |
| 35 ### | 35 ### |
| 36 ### Async debugging | 36 ### Async debugging |
| 37 ### | 37 ### |
| 38 async_single_step_into_test: RuntimeError # Issue 29158 |
| 38 async_star_single_step_into_test: RuntimeError # Issue 29158 | 39 async_star_single_step_into_test: RuntimeError # Issue 29158 |
| 39 async_step_out_test: RuntimeError # Issue 29158 | 40 async_step_out_test: RuntimeError # Issue 29158 |
| 40 async_star_step_out_test: RuntimeError # Issue 29158 | 41 async_star_step_out_test: RuntimeError # Issue 29158 |
| 41 awaiter_async_stack_contents_test: RuntimeError # Issue 29158 | 42 awaiter_async_stack_contents_test: RuntimeError # Issue 29158 |
| 42 async_single_step_out_test: RuntimeError # Issue 29158 | 43 async_single_step_out_test: RuntimeError # Issue 29158 |
| 43 async_generator_breakpoint_test: Skip # Issue 29158 | 44 async_generator_breakpoint_test: Skip # Issue 29158 |
| 44 async_single_step_exception_test: RuntimeError # Issue 29218 | 45 async_single_step_exception_test: RuntimeError # Issue 29218 |
| 45 | 46 |
| 46 ### | 47 ### |
| 47 ### These tests currently crash the VM | 48 ### These tests currently crash the VM |
| (...skipping 12 matching lines...) Expand all Loading... |
| 60 isolate_lifecycle_test: Pass, RuntimeError | 61 isolate_lifecycle_test: Pass, RuntimeError |
| 61 | 62 |
| 62 | 63 |
| 63 [ $compiler == dartk && $mode == debug ] | 64 [ $compiler == dartk && $mode == debug ] |
| 64 isolate_lifecycle_test: Skip # Flaky. | 65 isolate_lifecycle_test: Skip # Flaky. |
| 65 pause_idle_isolate_test: Skip # Flaky | 66 pause_idle_isolate_test: Skip # Flaky |
| 66 | 67 |
| 67 # Deferred loading kernel issue 28335. | 68 # Deferred loading kernel issue 28335. |
| 68 [ $compiler == dartk ] | 69 [ $compiler == dartk ] |
| 69 library_dependency_test: CompileTimeError # Deferred loading kernel issue 28335. | 70 library_dependency_test: CompileTimeError # Deferred loading kernel issue 28335. |
| OLD | NEW |