| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef | 78 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef |
| 79 function_type_alias_test: Fail # cannot resolve type Fun | 79 function_type_alias_test: Fail # cannot resolve type Fun |
| 80 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs | 80 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs |
| 81 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s | 81 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s |
| 82 generic_instanceof_test: Fail # cannot resolve type T | 82 generic_instanceof_test: Fail # cannot resolve type T |
| 83 generic_instanceof2_test: Fail # fails an instance of test at run time | 83 generic_instanceof2_test: Fail # fails an instance of test at run time |
| 84 generic_instanceof3_test: Fail # cannot handle generics. | 84 generic_instanceof3_test: Fail # cannot handle generics. |
| 85 generic_test: Fail # cannot resolve type T | 85 generic_test: Fail # cannot resolve type T |
| 86 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. | 86 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. |
| 87 implicit_scope_test: Fail # duplicate definition of a="bar" | 87 implicit_scope_test: Fail # duplicate definition of a="bar" |
| 88 lazy_final2_test: Fail # Issue 3559: No support for closures in lazy initialize
rs. | 88 lazy_static2_test: Fail # Issue 3559: No support for closures in lazy initializ
ers. |
| 89 library_prefixes_test: Fail # other is not a type | 89 library_prefixes_test: Fail # other is not a type |
| 90 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). | 90 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). |
| 91 many_generic_instanceof_test: Fail # cannot resolve type T | 91 many_generic_instanceof_test: Fail # cannot resolve type T |
| 92 method_binding_test: Fail # internal error: super property read not implemented. | 92 method_binding_test: Fail # internal error: super property read not implemented. |
| 93 method_name_test: Fail # Parsing of pseudo keywords. | 93 method_name_test: Fail # Parsing of pseudo keywords. |
| 94 method_override_test: Fail # cannot resolve type GetKeysFunctionType | 94 method_override_test: Fail # cannot resolve type GetKeysFunctionType |
| 95 method_override2_test/00: Fail # accepts illegal override | 95 method_override2_test/00: Fail # accepts illegal override |
| 96 method_override2_test/01: Fail # accepts illegal override | 96 method_override2_test/01: Fail # accepts illegal override |
| 97 method_override2_test/02: Fail # accepts illegal override | 97 method_override2_test/02: Fail # accepts illegal override |
| 98 method_override2_test/03: Fail # accepts illegal override | 98 method_override2_test/03: Fail # accepts illegal override |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 289 |
| 290 [ $compiler == dart2js && $runtime == safari ] | 290 [ $compiler == dart2js && $runtime == safari ] |
| 291 arithmetic_test: Skip # BUG(3492): Times out. | 291 arithmetic_test: Skip # BUG(3492): Times out. |
| 292 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 292 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 293 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 293 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 294 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 294 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 295 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 295 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 296 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 296 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 297 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 297 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 298 | 298 |
| OLD | NEW |