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 24 matching lines...) Expand all Loading... |
35 function_type_test: Fail # does not detect type error in checked mode. | 35 function_type_test: Fail # does not detect type error in checked mode. |
36 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. | 36 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. |
37 void_type_test: Fail # does not detect type error in checked mode. | 37 void_type_test: Fail # does not detect type error in checked mode. |
38 | 38 |
39 arithmetic_test: Fail | 39 arithmetic_test: Fail |
40 | 40 |
41 [ $compiler == dart2js && $unchecked ] | 41 [ $compiler == dart2js && $unchecked ] |
42 assertion_test: Fail | 42 assertion_test: Fail |
43 | 43 |
44 [ $compiler == dart2js ] | 44 [ $compiler == dart2js ] |
45 bad_override_test/01: Fail # TODO(ahe): I'm working on these. | |
46 bad_override_test/02: Fail # TODO(ahe): I'm working on these. | |
47 bad_override_test/03: Fail # TODO(ahe): I'm working on these. | |
48 bad_override_test/04: Fail # TODO(ahe): I'm working on these. | |
49 bad_override_test/05: Fail # TODO(ahe): I'm working on these. | |
50 bad_override_test/06: Fail # TODO(ahe): I'm working on these. | |
51 class_override_negative_test: Fail # TODO(ahe): I'm working on these. | |
52 fauxverride_test/05: Fail # TODO(ahe): I'm working on these. | |
53 override_field_method1_negative_test: Fail # TODO(ahe): I'm working on these. | |
54 override_field_method2_negative_test: Fail # TODO(ahe): I'm working on these. | |
55 override_field_method3_negative_test: Fail # TODO(ahe): I'm working on these. | |
56 override_field_method4_negative_test: Fail # TODO(ahe): I'm working on these. | |
57 override_field_method5_negative_test: Fail # TODO(ahe): I'm working on these. | |
58 override_field_method6_negative_test: Fail # TODO(ahe): I'm working on these. | |
59 override_field_test/01: Fail # TODO(ahe): I'm working on these. | |
60 override_method_with_field_test/01: Fail # TODO(ahe): I'm working on these. | |
61 | |
62 | |
63 function_type_this_parameter_test: Crash # Issue 4417. | 45 function_type_this_parameter_test: Crash # Issue 4417. |
64 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 46 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
65 | 47 |
66 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. | 48 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. |
67 # Crash infinite loop on Mac and dart2js checked mode on linux. | 49 # Crash infinite loop on Mac and dart2js checked mode on linux. |
68 function_type_alias6_test: Crash, Fail | 50 function_type_alias6_test: Crash, Fail |
69 | 51 |
70 static_initializer_type_error_test: Fail # Checked mode not supported. | 52 static_initializer_type_error_test: Fail # Checked mode not supported. |
71 | 53 |
72 # Compilation errors. | 54 # Compilation errors. |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 [ $compiler == dart2js && $runtime == safari ] | 291 [ $compiler == dart2js && $runtime == safari ] |
310 arithmetic_test: Skip # BUG(3492): Times out. | 292 arithmetic_test: Skip # BUG(3492): Times out. |
311 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 293 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
312 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 294 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
313 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 295 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
314 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 296 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
315 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 297 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
316 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 298 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
317 naming_test: Fail | 299 naming_test: Fail |
318 | 300 |
OLD | NEW |