| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 89 |
| 90 | 90 |
| 91 # Compilation errors. | 91 # Compilation errors. |
| 92 const_var_test: Fail # Map literals take 2 type arguments. | 92 const_var_test: Fail # Map literals take 2 type arguments. |
| 93 map_literal3_test: Fail # Map literals take 2 type arguments. | 93 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 94 ct_const_test: Fail # We don't take the generic type into account yet. | 94 ct_const_test: Fail # We don't take the generic type into account yet. |
| 95 char_escape_test: Fail # Unhandled non-BMP character: U+10000 | 95 char_escape_test: Fail # Unhandled non-BMP character: U+10000 |
| 96 constructor6_test: Fail # Closures inside initializers not implemented. | 96 constructor6_test: Fail # Closures inside initializers not implemented. |
| 97 default_factory_library_test: Fail # lib is not a type | 97 default_factory_library_test: Fail # lib is not a type |
| 98 dynamic_test: Fail # cannot resolve type F1 | 98 dynamic_test: Fail # cannot resolve type F1 |
| 99 factory_redirection_test: Fail # Not implemented. |
| 99 factory3_test: Fail # internal error: visitIs for type variables not implemented | 100 factory3_test: Fail # internal error: visitIs for type variables not implemented |
| 100 function_literals2_test: Fail # Closures inside initializers not implemented. | 101 function_literals2_test: Fail # Closures inside initializers not implemented. |
| 101 function_syntax_test/none: Fail # Closures inside initializers not implemented. | 102 function_syntax_test/none: Fail # Closures inside initializers not implemented. |
| 102 function_test: Fail # internal error: Closures inside initializers not implement
ed | 103 function_test: Fail # internal error: Closures inside initializers not implement
ed |
| 103 function_type_alias2_test: Fail # cannot resolve type f1 | 104 function_type_alias2_test: Fail # cannot resolve type f1 |
| 104 function_type_alias3_test: Fail # cannot resolve type F | 105 function_type_alias3_test: Fail # cannot resolve type F |
| 105 function_type_alias4_test: Fail # cannot resolve type F | 106 function_type_alias4_test: Fail # cannot resolve type F |
| 106 function_type_alias5_test/00: Fail # visitIs for typedefs not implemented | 107 function_type_alias5_test/00: Fail # visitIs for typedefs not implemented |
| 107 function_type_alias5_test/01: Fail # visitIs for typedefs not implemented | 108 function_type_alias5_test/01: Fail # visitIs for typedefs not implemented |
| 108 function_type_alias5_test/02: Fail # visitIs for typedefs not implemented | 109 function_type_alias5_test/02: Fail # visitIs for typedefs not implemented |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 324 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 324 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 325 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 325 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 326 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 326 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 327 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 327 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 328 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 328 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 329 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 329 | 330 |
| 330 [ $compiler == dart2js && $runtime == ff && $system == windows ] | 331 [ $compiler == dart2js && $runtime == ff && $system == windows ] |
| 331 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. | 332 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. |
| 332 typed_message_test: Fail # http://dartbug.com/5383 | 333 typed_message_test: Fail # http://dartbug.com/5383 |
| OLD | NEW |