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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 function_type_this_parameter_test: Crash # Issue 4417. | 48 function_type_this_parameter_test: Crash # Issue 4417. |
49 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 49 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
50 | 50 |
51 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. | 51 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. |
52 # Crash infinite loop on Mac and dart2js checked mode on linux. | 52 # Crash infinite loop on Mac and dart2js checked mode on linux. |
53 function_type_alias6_test: Crash, Fail | 53 function_type_alias6_test: Crash, Fail |
54 | 54 |
55 static_initializer_type_error_test: Fail # Checked mode not supported. | 55 static_initializer_type_error_test: Fail # Checked mode not supported. |
56 | 56 |
57 # Compilation errors. | 57 # Compilation errors. |
| 58 const_var_test: Fail # Map literals take 2 type arguments. |
| 59 map_literal3_test: Fail # Map literals take 2 type arguments. |
58 ct_const_test: Fail # We don't take the generic type into account yet. | 60 ct_const_test: Fail # We don't take the generic type into account yet. |
59 char_escape_test: Fail # Unhandled non-BMP character: U+10000 | 61 char_escape_test: Fail # Unhandled non-BMP character: U+10000 |
60 constructor6_test: Fail # Closures inside initializers not implemented. | 62 constructor6_test: Fail # Closures inside initializers not implemented. |
61 default_factory_library_test: Fail # lib is not a type | 63 default_factory_library_test: Fail # lib is not a type |
62 dynamic_test: Fail # cannot resolve type F1 | 64 dynamic_test: Fail # cannot resolve type F1 |
63 factory3_test: Fail # internal error: visitIs for type variables not implemented | 65 factory3_test: Fail # internal error: visitIs for type variables not implemented |
64 function_literals2_test: Fail # Closures inside initializers not implemented. | 66 function_literals2_test: Fail # Closures inside initializers not implemented. |
65 function_syntax_test/none: Fail # Closures inside initializers not implemented. | 67 function_syntax_test/none: Fail # Closures inside initializers not implemented. |
66 function_test: Fail # internal error: Closures inside initializers not implement
ed | 68 function_test: Fail # internal error: Closures inside initializers not implement
ed |
67 function_type_alias2_test: Fail # cannot resolve type f1 | 69 function_type_alias2_test: Fail # cannot resolve type f1 |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 [ $compiler == dart2js && $runtime == safari ] | 294 [ $compiler == dart2js && $runtime == safari ] |
293 arithmetic_test: Skip # BUG(3492): Times out. | 295 arithmetic_test: Skip # BUG(3492): Times out. |
294 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 296 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
295 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 297 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
296 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 298 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
297 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 299 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
298 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 300 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
299 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 301 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
300 naming_test: Fail | 302 naming_test: Fail |
301 | 303 |
OLD | NEW |