Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(703)

Side by Side Diff: tests/language/language_dart2js.status

Issue 10908143: Support check mode for statics. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 ]
11 assert_with_type_test_or_cast_test: Fail # Issue 4929 11 assert_with_type_test_or_cast_test: Fail # Issue 4929
12 assign_static_type_test/01: Fail
13 assign_static_type_test/02: Fail
14 type_variable_bounds_test/01: Fail 12 type_variable_bounds_test/01: Fail
15 type_variable_bounds_test/02: Fail 13 type_variable_bounds_test/02: Fail
16 type_variable_bounds_test/04: Fail 14 type_variable_bounds_test/04: Fail
17 type_variable_bounds_test/05: Fail 15 type_variable_bounds_test/05: Fail
18 type_variable_bounds2_test/00: Fail 16 type_variable_bounds2_test/00: Fail
19 type_variable_bounds2_test/03: Fail 17 type_variable_bounds2_test/03: Fail
20 type_variable_bounds2_test/05: Fail 18 type_variable_bounds2_test/05: Fail
21 type_variable_bounds2_test/06: Pass # For the wrong reasons. 19 type_variable_bounds2_test/06: Pass # For the wrong reasons.
22 type_variable_scope_test/00: Fail 20 type_variable_scope_test/00: Fail
23 type_variable_scope_test/01: Fail 21 type_variable_scope_test/01: Fail
(...skipping 11 matching lines...) Expand all
35 function_malformed_result_type_test: Fail # does not detect type error in checke d mode. 33 function_malformed_result_type_test: Fail # does not detect type error in checke d mode.
36 void_type_test: Fail # does not detect type error in checked mode. 34 void_type_test: Fail # does not detect type error in checked mode.
37 35
38 type_parameter_test/01: Fail # Issue 4932 36 type_parameter_test/01: Fail # Issue 4932
39 type_parameter_test/02: Fail # Issue 4932 37 type_parameter_test/02: Fail # Issue 4932
40 type_parameter_test/03: Fail # Issue 4932 38 type_parameter_test/03: Fail # Issue 4932
41 type_parameter_test/04: Fail # Issue 4932 39 type_parameter_test/04: Fail # Issue 4932
42 40
43 [ $compiler == dart2js && $unchecked ] 41 [ $compiler == dart2js && $unchecked ]
44 assertion_test: Fail 42 assertion_test: Fail
43 static_initializer_type_error_test: Fail, Ok
kasperl 2012/09/10 13:34:13 Is it really OK to fail this test? Could the test
45 44
46 [ $compiler == dart2js ] 45 [ $compiler == dart2js ]
47 infinity_test: Fail # Issue 4984 46 infinity_test: Fail # Issue 4984
48 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>. 47 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>.
49 48
50 class_literal_test/03: Fail # Calling a nonexistent static is not a compile time error anymore. 49 class_literal_test/03: Fail # Calling a nonexistent static is not a compile time error anymore.
51 class_literal_test/04: Fail # Calling a nonexistent static is not a compile time error anymore. 50 class_literal_test/04: Fail # Calling a nonexistent static is not a compile time error anymore.
52 class_literal_test/08: Fail # Calling a nonexistent static is not a compile time error anymore. 51 class_literal_test/08: Fail # Calling a nonexistent static is not a compile time error anymore.
53 class_literal_test/09: Fail # Calling a nonexistent static is not a compile time error anymore. 52 class_literal_test/09: Fail # Calling a nonexistent static is not a compile time error anymore.
54 class_literal_test/15: Fail # Calling a nonexistent static is not a compile time error anymore. 53 class_literal_test/15: Fail # Calling a nonexistent static is not a compile time error anymore.
55 class_literal_test/16: Fail # Calling a nonexistent static is not a compile time error anymore. 54 class_literal_test/16: Fail # Calling a nonexistent static is not a compile time error anymore.
56 55
57 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax. 56 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax.
58 57
59 function_type_this_parameter_test: Crash # Issue 4417. 58 function_type_this_parameter_test: Crash # Issue 4417.
60 compile_time_constant8_test: Fail # We don't take the generic type into account yet. 59 compile_time_constant8_test: Fail # We don't take the generic type into account yet.
61 canonical_const_test: Fail # We don't take the generic type into account yet. 60 canonical_const_test: Fail # We don't take the generic type into account yet.
62 61
63 function_type_alias_test: Fail # Support for optional parameters not conform to latest spec. 62 function_type_alias_test: Fail # Support for optional parameters not conform to latest spec.
64 function_type_alias2_test: Fail # Support for optional parameters not conform to latest spec. 63 function_type_alias2_test: Fail # Support for optional parameters not conform to latest spec.
65 named_parameters_type_test: Fail # Support for optional parameters not conform t o latest spec. 64 named_parameters_type_test: Fail # Support for optional parameters not conform t o latest spec.
66 positional_parameters_type_test: Fail # Support for optional parameters not conf orm to latest spec. 65 positional_parameters_type_test: Fail # Support for optional parameters not conf orm to latest spec.
67 optional_named_parameters_test: Fail # Support for optional parameters not confo rm to latest spec. 66 optional_named_parameters_test: Fail # Support for optional parameters not confo rm to latest spec.
68 67
69 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux. 68 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux.
70 # Crash infinite loop on Mac and dart2js checked mode on linux. 69 # Crash infinite loop on Mac and dart2js checked mode on linux.
71 function_type_alias6_test: Crash, Fail 70 function_type_alias6_test: Crash, Fail
72 71
73 static_initializer_type_error_test: Fail # Checked mode not supported.
74 72
75 # Compilation errors. 73 # Compilation errors.
76 const_var_test: Fail # Map literals take 2 type arguments. 74 const_var_test: Fail # Map literals take 2 type arguments.
77 map_literal3_test: Fail # Map literals take 2 type arguments. 75 map_literal3_test: Fail # Map literals take 2 type arguments.
78 ct_const_test: Fail # We don't take the generic type into account yet. 76 ct_const_test: Fail # We don't take the generic type into account yet.
79 char_escape_test: Fail # Unhandled non-BMP character: U+10000 77 char_escape_test: Fail # Unhandled non-BMP character: U+10000
80 constructor6_test: Fail # Closures inside initializers not implemented. 78 constructor6_test: Fail # Closures inside initializers not implemented.
81 default_factory_library_test: Fail # lib is not a type 79 default_factory_library_test: Fail # lib is not a type
82 dynamic_test: Fail # cannot resolve type F1 80 dynamic_test: Fail # cannot resolve type F1
83 factory3_test: Fail # internal error: visitIs for type variables not implemented 81 factory3_test: Fail # internal error: visitIs for type variables not implemented
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 306
309 [ $compiler == dart2js && $runtime == safari ] 307 [ $compiler == dart2js && $runtime == safari ]
310 arithmetic_test: Skip # BUG(3492): Times out. 308 arithmetic_test: Skip # BUG(3492): Times out.
311 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' 309 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' 310 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError'
313 closure3_test: Fail # Uncaught error: Instance of 'TypeError' 311 closure3_test: Fail # Uncaught error: Instance of 'TypeError'
314 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' 312 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError'
315 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' 313 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError'
316 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' 314 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError'
317 315
OLDNEW
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698