| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 45 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| 46 | 46 |
| 47 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. | 47 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. |
| 48 # Crash infinite loop on Mac and dart2js checked mode on linux. | 48 # Crash infinite loop on Mac and dart2js checked mode on linux. |
| 49 function_type_alias6_test: Crash, Fail | 49 function_type_alias6_test: Crash, Fail |
| 50 | 50 |
| 51 static_initializer_type_error_test: Fail # Checked mode not supported. | 51 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 52 | 52 |
| 53 # Compilation errors. | 53 # Compilation errors. |
| 54 ct_const_test: Fail # We don't take the generic type into account yet. | 54 ct_const_test: Fail # We don't take the generic type into account yet. |
| 55 call_operator_test: Fail # Unexpected token 'call' | |
| 56 char_escape_test: Fail # Unhandled non-BMP character: U+10000 | 55 char_escape_test: Fail # Unhandled non-BMP character: U+10000 |
| 57 constructor6_test: Fail # Closures inside initializers not implemented. | 56 constructor6_test: Fail # Closures inside initializers not implemented. |
| 58 default_factory_library_test: Fail # lib is not a type | 57 default_factory_library_test: Fail # lib is not a type |
| 59 dynamic_test: Fail # cannot resolve type F1 | 58 dynamic_test: Fail # cannot resolve type F1 |
| 60 factory3_test: Fail # internal error: visitIs for type variables not implemented | 59 factory3_test: Fail # internal error: visitIs for type variables not implemented |
| 61 function_literals2_test: Fail # Closures inside initializers not implemented. | 60 function_literals2_test: Fail # Closures inside initializers not implemented. |
| 62 function_syntax_test: Fail # Closures inside initializers not implemented. | 61 function_syntax_test: Fail # Closures inside initializers not implemented. |
| 63 function_test: Fail # internal error: Closures inside initializers not implement
ed | 62 function_test: Fail # internal error: Closures inside initializers not implement
ed |
| 64 function_type_alias2_test: Fail # cannot resolve type f1 | 63 function_type_alias2_test: Fail # cannot resolve type f1 |
| 65 function_type_alias3_test: Fail # cannot resolve type F | 64 function_type_alias3_test: Fail # cannot resolve type F |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 | 290 |
| 292 | 291 |
| 293 [ $compiler == dart2js && $runtime == safari ] | 292 [ $compiler == dart2js && $runtime == safari ] |
| 294 arithmetic_test: Skip # BUG(3492): Times out. | 293 arithmetic_test: Skip # BUG(3492): Times out. |
| 295 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 294 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 296 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 295 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 297 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 296 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 298 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 297 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 299 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 298 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 300 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 299 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |