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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 compile_time_constant_test/02: Fail, OK # By inlining the use-function we don't
compile the static variable. | 49 compile_time_constant_test/02: Fail, OK # By inlining the use-function we don't
compile the static variable. |
50 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 50 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
51 | 51 |
52 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. | 52 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. |
53 # Crash infinite loop on Mac and dart2js checked mode on linux. | 53 # Crash infinite loop on Mac and dart2js checked mode on linux. |
54 function_type_alias6_test: Crash, Fail | 54 function_type_alias6_test: Crash, Fail |
55 | 55 |
56 static_initializer_type_error_test: Fail # Checked mode not supported. | 56 static_initializer_type_error_test: Fail # Checked mode not supported. |
57 | 57 |
58 # Compilation errors. | 58 # Compilation errors. |
| 59 argument_definition_test/*: Skip # Not implemented. |
59 const_var_test: Fail # Map literals take 2 type arguments. | 60 const_var_test: Fail # Map literals take 2 type arguments. |
60 map_literal3_test: Fail # Map literals take 2 type arguments. | 61 map_literal3_test: Fail # Map literals take 2 type arguments. |
61 ct_const_test: Fail # We don't take the generic type into account yet. | 62 ct_const_test: Fail # We don't take the generic type into account yet. |
62 char_escape_test: Fail # Unhandled non-BMP character: U+10000 | 63 char_escape_test: Fail # Unhandled non-BMP character: U+10000 |
63 comparison_test: Fail # Issue 4551 | 64 comparison_test: Fail # Issue 4551 |
64 constructor6_test: Fail # Closures inside initializers not implemented. | 65 constructor6_test: Fail # Closures inside initializers not implemented. |
65 default_factory_library_test: Fail # lib is not a type | 66 default_factory_library_test: Fail # lib is not a type |
66 dynamic_test: Fail # cannot resolve type F1 | 67 dynamic_test: Fail # cannot resolve type F1 |
67 factory3_test: Fail # internal error: visitIs for type variables not implemented | 68 factory3_test: Fail # internal error: visitIs for type variables not implemented |
68 function_literals2_test: Fail # Closures inside initializers not implemented. | 69 function_literals2_test: Fail # Closures inside initializers not implemented. |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 [ $compiler == dart2js && $runtime == safari ] | 287 [ $compiler == dart2js && $runtime == safari ] |
287 arithmetic_test: Skip # BUG(3492): Times out. | 288 arithmetic_test: Skip # BUG(3492): Times out. |
288 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 289 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
289 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 290 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
290 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 291 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
291 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 292 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
292 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 293 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
293 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 294 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
294 naming_test: Fail | 295 naming_test: Fail |
295 | 296 |
OLD | NEW |