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

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/language/language.status ('k') | tests/language/static_initializer_type_error_test.dart » ('j') | 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 12 matching lines...) Expand all
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
45 43
44 # Only checked mode reports an error on type assignment
45 # problems in compile time constants.
46 compile_time_constant_checked_test/02: Fail, OK
47
46 [ $compiler == dart2js && $host_unchecked ] 48 [ $compiler == dart2js && $host_unchecked ]
47 metadata_test: Fail # Metadata on type parameters not supported. 49 metadata_test: Fail # Metadata on type parameters not supported.
48 50
49 [ $compiler == dart2js && $host_checked ] 51 [ $compiler == dart2js && $host_checked ]
50 metadata_test: Crash # Metadata on type parameters not supported. 52 metadata_test: Crash # Metadata on type parameters not supported.
51 53
52 [ $compiler == dart2js ] 54 [ $compiler == dart2js ]
53 infinity_test: Fail # Issue 4984 55 infinity_test: Fail # Issue 4984
54 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>. 56 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>.
55 57
(...skipping 12 matching lines...) Expand all
68 70
69 function_type_alias_test: Fail # Support for optional parameters not conform to latest spec. 71 function_type_alias_test: Fail # Support for optional parameters not conform to latest spec.
70 function_type_alias2_test: Fail # Support for optional parameters not conform to latest spec. 72 function_type_alias2_test: Fail # Support for optional parameters not conform to latest spec.
71 named_parameters_type_test: Fail # Support for optional parameters not conform t o latest spec. 73 named_parameters_type_test: Fail # Support for optional parameters not conform t o latest spec.
72 positional_parameters_type_test: Fail # Support for optional parameters not conf orm to latest spec. 74 positional_parameters_type_test: Fail # Support for optional parameters not conf orm to latest spec.
73 75
74 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux. 76 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux.
75 # Crash infinite loop on Mac and dart2js checked mode on linux. 77 # Crash infinite loop on Mac and dart2js checked mode on linux.
76 function_type_alias6_test: Crash, Fail 78 function_type_alias6_test: Crash, Fail
77 79
78 static_initializer_type_error_test: Fail # Checked mode not supported.
79 80
80 # Compilation errors. 81 # Compilation errors.
81 const_var_test: Fail # Map literals take 2 type arguments. 82 const_var_test: Fail # Map literals take 2 type arguments.
82 map_literal3_test: Fail # Map literals take 2 type arguments. 83 map_literal3_test: Fail # Map literals take 2 type arguments.
83 ct_const_test: Fail # We don't take the generic type into account yet. 84 ct_const_test: Fail # We don't take the generic type into account yet.
84 char_escape_test: Fail # Unhandled non-BMP character: U+10000 85 char_escape_test: Fail # Unhandled non-BMP character: U+10000
85 constructor6_test: Fail # Closures inside initializers not implemented. 86 constructor6_test: Fail # Closures inside initializers not implemented.
86 default_factory_library_test: Fail # lib is not a type 87 default_factory_library_test: Fail # lib is not a type
87 dynamic_test: Fail # cannot resolve type F1 88 dynamic_test: Fail # cannot resolve type F1
88 factory3_test: Fail # internal error: visitIs for type variables not implemented 89 factory3_test: Fail # internal error: visitIs for type variables not implemented
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 317
317 318
318 [ $compiler == dart2js && $runtime == safari ] 319 [ $compiler == dart2js && $runtime == safari ]
319 arithmetic_test: Skip # BUG(3492): Times out. 320 arithmetic_test: Skip # BUG(3492): Times out.
320 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' 321 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError'
321 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' 322 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError'
322 closure3_test: Fail # Uncaught error: Instance of 'TypeError' 323 closure3_test: Fail # Uncaught error: Instance of 'TypeError'
323 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' 324 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError'
324 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' 325 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError'
325 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' 326 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError'
OLDNEW
« no previous file with comments | « tests/language/language.status ('k') | tests/language/static_initializer_type_error_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698