| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
| 6 # current state of the language. | 6 # current state of the language. |
| 7 | 7 |
| 8 [ $compiler == none ] | 8 [ $compiler == none ] |
| 9 mixin_super_constructor_named_test: Fail # Issue 12631 | 9 mixin_super_constructor_named_test: Fail # Issue 12631 |
| 10 mixin_super_constructor_positionals_test: Fail # Issue 12631 | 10 mixin_super_constructor_positionals_test: Fail # Issue 12631 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 deferred_duplicate_prefix2_test/01: Fail | 50 deferred_duplicate_prefix2_test/01: Fail |
| 51 deferred_duplicate_prefix3_test/01: Fail | 51 deferred_duplicate_prefix3_test/01: Fail |
| 52 | 52 |
| 53 [ $compiler == none && $runtime == vm ] | 53 [ $compiler == none && $runtime == vm ] |
| 54 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 54 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 55 override_inheritance_mixed_test/08: MissingCompileTimeError # Issue 16137 | 55 override_inheritance_mixed_test/08: MissingCompileTimeError # Issue 16137 |
| 56 override_inheritance_mixed_test/09: MissingCompileTimeError # Issue 16137 | 56 override_inheritance_mixed_test/09: MissingCompileTimeError # Issue 16137 |
| 57 | 57 |
| 58 unicode_bom_test: Fail # Issue 16067 | 58 unicode_bom_test: Fail # Issue 16067 |
| 59 | 59 |
| 60 [ $compiler == none && $runtime == vm && $arch == arm ] | |
| 61 call_test: Fail # Issue 17449 | |
| 62 | |
| 63 [ $compiler == none && $checked ] | 60 [ $compiler == none && $checked ] |
| 64 type_variable_bounds4_test/01: Fail # Issue 14006 | 61 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 65 | 62 |
| 66 [ $compiler == none && $unchecked ] | 63 [ $compiler == none && $unchecked ] |
| 67 # Only checked mode reports an error on type assignment | 64 # Only checked mode reports an error on type assignment |
| 68 # problems in compile time constants. | 65 # problems in compile time constants. |
| 69 compile_time_constant_checked_test/02: Fail, OK | 66 compile_time_constant_checked_test/02: Fail, OK |
| 70 compile_time_constant_checked2_test/01: Fail, OK | 67 compile_time_constant_checked2_test/01: Fail, OK |
| 71 compile_time_constant_checked2_test/02: Fail, OK | 68 compile_time_constant_checked2_test/02: Fail, OK |
| 72 compile_time_constant_checked2_test/03: Fail, OK | 69 compile_time_constant_checked2_test/03: Fail, OK |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 issue13474_test: Pass, Fail # Issue 14651. | 114 issue13474_test: Pass, Fail # Issue 14651. |
| 118 | 115 |
| 119 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] | 116 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] |
| 120 typed_message_test: Crash, Fail # Issue 13921, 14400 | 117 typed_message_test: Crash, Fail # Issue 13921, 14400 |
| 121 vm/optimized_guarded_field_isolates_test: Fail # Issue 13921. | 118 vm/optimized_guarded_field_isolates_test: Fail # Issue 13921. |
| 122 override_inheritance_mixed_test/08: Fail # Issue 16137 | 119 override_inheritance_mixed_test/08: Fail # Issue 16137 |
| 123 override_inheritance_mixed_test/09: Fail # Issue 16137 | 120 override_inheritance_mixed_test/09: Fail # Issue 16137 |
| 124 | 121 |
| 125 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] | 122 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] |
| 126 generic_instanceof3_test: Pass, Crash # dartbug.com/17440 | 123 generic_instanceof3_test: Pass, Crash # dartbug.com/17440 |
| OLD | NEW |