| 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 [ $compiler == dart2js || $compiler == dart2dart ] | 5 [ $compiler == dart2js || $compiler == dart2dart ] |
| 6 # VM specific tests that should not be run by dart2js. | 6 # VM specific tests that should not be run by dart2js. |
| 7 *vm_test: Skip | 7 *vm_test: Skip |
| 8 *vm_negative_test: Skip | 8 *vm_negative_test: Skip |
| 9 | 9 |
| 10 [ $compiler == dart2js && $checked ] | 10 [ $compiler == dart2js && $checked ] |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 [ $compiler == dart2js ] | 44 [ $compiler == dart2js ] |
| 45 implicit_this_test/03: Fail # TODO(ahe): Handle abstract getters. | 45 implicit_this_test/03: Fail # TODO(ahe): Handle abstract getters. |
| 46 implicit_this_test/04: Fail # TODO(ahe): Handle abstract getters. | 46 implicit_this_test/04: Fail # TODO(ahe): Handle abstract getters. |
| 47 property_field_override_test: Fail # TODO(ahe): Handle abstract getters. | 47 property_field_override_test: Fail # TODO(ahe): Handle abstract getters. |
| 48 | 48 |
| 49 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject
old getter syntax. | 49 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject
old getter syntax. |
| 50 | 50 |
| 51 function_type_this_parameter_test: Crash # Issue 4417. | 51 function_type_this_parameter_test: Crash # Issue 4417. |
| 52 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 52 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| 53 | 53 |
| 54 # const variables are not regarded as compile-time constants: | |
| 55 adjacent_const_string_literals_test: Fail | |
| 56 call_through_getter_test: Fail | |
| 57 compile_time_constant2_test: Fail | |
| 58 compile_time_constant3_test: Fail | |
| 59 compile_time_constant5_test: Fail | |
| 60 compile_time_constant6_test: Fail | |
| 61 compile_time_constant_a_test: Fail | |
| 62 compile_time_constant_j_test: Fail | |
| 63 compile_time_constant_o_test: Fail | |
| 64 const_init_test: Fail | |
| 65 ct_const3_test: Fail | |
| 66 ct_const4_test: Fail | |
| 67 issue4515170_test: Fail | |
| 68 list_literal2_test: Fail | |
| 69 string_interpolation8_test: Fail | |
| 70 top_level_var_test: Fail | |
| 71 | |
| 72 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. | 54 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. |
| 73 # Crash infinite loop on Mac and dart2js checked mode on linux. | 55 # Crash infinite loop on Mac and dart2js checked mode on linux. |
| 74 function_type_alias6_test: Crash, Fail | 56 function_type_alias6_test: Crash, Fail |
| 75 | 57 |
| 76 static_initializer_type_error_test: Fail # Checked mode not supported. | 58 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 77 | 59 |
| 78 # Compilation errors. | 60 # Compilation errors. |
| 79 const_var_test: Fail # Map literals take 2 type arguments. | 61 const_var_test: Fail # Map literals take 2 type arguments. |
| 80 map_literal3_test: Fail # Map literals take 2 type arguments. | 62 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 81 ct_const_test: Fail # We don't take the generic type into account yet. | 63 ct_const_test: Fail # We don't take the generic type into account yet. |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 [ $compiler == dart2js && $runtime == safari ] | 296 [ $compiler == dart2js && $runtime == safari ] |
| 315 arithmetic_test: Skip # BUG(3492): Times out. | 297 arithmetic_test: Skip # BUG(3492): Times out. |
| 316 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 298 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 317 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 299 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 318 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 300 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 319 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 301 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 320 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 302 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 321 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 303 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 322 naming_test: Fail | 304 naming_test: Fail |
| 323 | 305 |
| OLD | NEW |