| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 factory3_test: Fail # internal error: visitIs for type variables not implemented | 60 factory3_test: Fail # internal error: visitIs for type variables not implemented |
| 61 function_literals2_test: Fail # Closures inside initializers not implemented. | 61 function_literals2_test: Fail # Closures inside initializers not implemented. |
| 62 function_syntax_test: Fail # Closures inside initializers not implemented. | 62 function_syntax_test: Fail # Closures inside initializers not implemented. |
| 63 function_test: Fail # internal error: Closures inside initializers not implement
ed | 63 function_test: Fail # internal error: Closures inside initializers not implement
ed |
| 64 function_type_alias2_test: Fail # cannot resolve type f1 | 64 function_type_alias2_test: Fail # cannot resolve type f1 |
| 65 function_type_alias3_test: Fail # cannot resolve type F | 65 function_type_alias3_test: Fail # cannot resolve type F |
| 66 function_type_alias4_test: Fail # cannot resolve type F | 66 function_type_alias4_test: Fail # cannot resolve type F |
| 67 function_type_alias5_test/00: Fail # visitIs for typedefs not implemented | 67 function_type_alias5_test/00: Fail # visitIs for typedefs not implemented |
| 68 function_type_alias5_test/01: Fail # visitIs for typedefs not implemented | 68 function_type_alias5_test/01: Fail # visitIs for typedefs not implemented |
| 69 function_type_alias5_test/02: Fail # visitIs for typedefs not implemented | 69 function_type_alias5_test/02: Fail # visitIs for typedefs not implemented |
| 70 function_type_alias6_test: Fail # visitIs for typedefs not implemented. | |
| 71 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef | 70 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef |
| 72 function_type_alias_test: Fail # cannot resolve type Fun | 71 function_type_alias_test: Fail # cannot resolve type Fun |
| 73 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs | 72 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs |
| 74 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s | 73 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s |
| 75 generic_instanceof_test: Fail # cannot resolve type T | 74 generic_instanceof_test: Fail # cannot resolve type T |
| 76 generic_instanceof2_test: Fail # fails an instance of test at run time | 75 generic_instanceof2_test: Fail # fails an instance of test at run time |
| 77 generic_instanceof3_test: Fail # cannot handle generics. | 76 generic_instanceof3_test: Fail # cannot handle generics. |
| 78 generic_test: Fail # cannot resolve type T | 77 generic_test: Fail # cannot resolve type T |
| 79 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. | 78 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. |
| 80 getter_no_setter_test/01: Crash # Internal error: NullPointerException : method:
'get:enclosingElement' | 79 getter_no_setter_test/01: Crash # Internal error: NullPointerException : method:
'get:enclosingElement' |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 280 |
| 282 | 281 |
| 283 [ $compiler == dart2js && $runtime == safari ] | 282 [ $compiler == dart2js && $runtime == safari ] |
| 284 arithmetic_test: Skip # BUG(3492): Times out. | 283 arithmetic_test: Skip # BUG(3492): Times out. |
| 285 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 284 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 286 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 285 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 287 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 286 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 288 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 287 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 289 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 288 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 290 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 289 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |