| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 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 |
| 71 function_type_alias_test: Fail # cannot resolve type Fun | 71 function_type_alias_test: Fail # cannot resolve type Fun |
| 72 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs | 72 function_type_parameter2_test: Fail # Internal Error: expected optional paramete
rs |
| 73 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s | 73 function_type_parameter_test: Fail # Internal Error: expected optional parameter
s |
| 74 generic_instanceof_test: Fail # cannot resolve type T | 74 generic_instanceof_test: Fail # cannot resolve type T |
| 75 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 |
| 76 generic_instanceof3_test: Fail # cannot handle generics. | 76 generic_instanceof3_test: Fail # cannot handle generics. |
| 77 generic_test: Fail # cannot resolve type T | 77 generic_test: Fail # cannot resolve type T |
| 78 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. | 78 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. |
| 79 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' |
| 80 getters_setters_test: Fail # Internal Error: SsaBuilder.visitIdentifier on non-t
his | |
| 81 implicit_scope_test: Fail # duplicate definition of a="bar" | 80 implicit_scope_test: Fail # duplicate definition of a="bar" |
| 82 library_prefixes_test: Fail # other is not a type | 81 library_prefixes_test: Fail # other is not a type |
| 83 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). | 82 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). |
| 84 many_generic_instanceof_test: Fail # cannot resolve type T | 83 many_generic_instanceof_test: Fail # cannot resolve type T |
| 85 method_binding_test: Fail # internal error: super property read not implemented. | 84 method_binding_test: Fail # internal error: super property read not implemented. |
| 86 method_name_test: Fail # Parsing of pseudo keywords. | 85 method_name_test: Fail # Parsing of pseudo keywords. |
| 87 method_override_test: Fail # cannot resolve type GetKeysFunctionType | 86 method_override_test: Fail # cannot resolve type GetKeysFunctionType |
| 88 method_override2_test/00: Fail # accepts illegal override | 87 method_override2_test/00: Fail # accepts illegal override |
| 89 method_override2_test/01: Fail # accepts illegal override | 88 method_override2_test/01: Fail # accepts illegal override |
| 90 method_override2_test/02: Fail # accepts illegal override | 89 method_override2_test/02: Fail # accepts illegal override |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 [ $compiler == dart2js && $runtime == safari ] | 289 [ $compiler == dart2js && $runtime == safari ] |
| 291 arithmetic_test: Skip # BUG(3492): Times out. | 290 arithmetic_test: Skip # BUG(3492): Times out. |
| 292 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 291 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' | 292 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 294 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 293 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 295 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 294 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 296 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 295 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 297 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 296 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 298 naming_test: Fail | 297 naming_test: Fail |
| 299 | 298 |
| OLD | NEW |