| 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 ] | 5 [ $compiler == dart2js ] |
| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 function_type_alias6_test: Crash # infinite loop. | 63 function_type_alias6_test: Crash # infinite loop. |
| 64 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef | 64 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef |
| 65 function_type_alias_test: Fail # cannot resolve type Fun | 65 function_type_alias_test: Fail # cannot resolve type Fun |
| 66 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs | 66 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs |
| 67 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s | 67 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s |
| 68 generic_instanceof_test: Fail # cannot resolve type T | 68 generic_instanceof_test: Fail # cannot resolve type T |
| 69 generic_instanceof2_test: Fail # fails an instance of test at run time | 69 generic_instanceof2_test: Fail # fails an instance of test at run time |
| 70 generic_instanceof3_test: Fail # cannot handle generics. | 70 generic_instanceof3_test: Fail # cannot handle generics. |
| 71 generic_test: Fail # cannot resolve type T | 71 generic_test: Fail # cannot resolve type T |
| 72 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. | 72 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. |
| 73 getter_no_setter_test/01: Crash # Internal error: NullPointerException : method:
'get:enclosingElement' |
| 73 getters_setters_test: Fail # Internal Error: SsaBuilder.visitIdentifier on non-t
his | 74 getters_setters_test: Fail # Internal Error: SsaBuilder.visitIdentifier on non-t
his |
| 74 implicit_scope_test: Fail # duplicate definition of a="bar" | 75 implicit_scope_test: Fail # duplicate definition of a="bar" |
| 75 library_prefixes_test: Fail # other is not a type | 76 library_prefixes_test: Fail # other is not a type |
| 76 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). | 77 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). |
| 77 many_generic_instanceof_test: Fail # cannot resolve type T | 78 many_generic_instanceof_test: Fail # cannot resolve type T |
| 78 method_binding_test: Fail # internal error: super property read not implemented. | 79 method_binding_test: Fail # internal error: super property read not implemented. |
| 79 method_name_test: Fail # Parsing of pseudo keywords. | 80 method_name_test: Fail # Parsing of pseudo keywords. |
| 80 method_override_test: Fail # cannot resolve type GetKeysFunctionType | 81 method_override_test: Fail # cannot resolve type GetKeysFunctionType |
| 81 method_override2_test/00: Fail # accepts illegal override | 82 method_override2_test/00: Fail # accepts illegal override |
| 82 method_override2_test/01: Fail # accepts illegal override | 83 method_override2_test/01: Fail # accepts illegal override |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 | 284 |
| 284 | 285 |
| 285 [ $compiler == dart2js && $runtime == safari ] | 286 [ $compiler == dart2js && $runtime == safari ] |
| 286 arithmetic_test: Skip # BUG(3492): Times out. | 287 arithmetic_test: Skip # BUG(3492): Times out. |
| 287 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 288 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 288 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 289 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 289 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 290 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 290 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 291 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 291 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 292 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 292 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 293 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |