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

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

Issue 11229002: Handle type variable in static member. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Test update removed. Created 8 years, 2 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
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 type_parameter_test: Skip # Deprecated test of issue 4932
ahe 2012/10/23 16:17:13 Please do not skip tests, also, this test does not
Johnni Winther 2012/10/24 14:28:35 Line removed.
9 10
10 [ $compiler == dart2js && $checked ] 11 [ $compiler == dart2js && $checked ]
11 assert_with_type_test_or_cast_test: Fail # Issue 4929 12 assert_with_type_test_or_cast_test: Fail # Issue 4929
12 type_variable_bounds_test/01: Fail 13 type_variable_bounds_test/01: Fail
13 type_variable_bounds_test/02: Fail 14 type_variable_bounds_test/02: Fail
14 type_variable_bounds_test/04: Fail 15 type_variable_bounds_test/04: Fail
15 type_variable_bounds_test/05: Fail 16 type_variable_bounds_test/05: Fail
16 type_variable_bounds2_test/00: Fail 17 type_variable_bounds2_test/00: Fail
17 type_variable_bounds2_test/03: Fail 18 type_variable_bounds2_test/03: Fail
18 type_variable_bounds2_test/05: Fail 19 type_variable_bounds2_test/05: Fail
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 throw_expr_test: Fail 70 throw_expr_test: Fail
70 metadata_test: Fail # Metadata on type parameters not supported. 71 metadata_test: Fail # Metadata on type parameters not supported.
71 infinity_test: Fail # Issue 4984 72 infinity_test: Fail # Issue 4984
72 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>. 73 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>.
73 74
74 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax. 75 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax.
75 76
76 compile_time_constant8_test: Fail # We don't take the generic type into account yet. 77 compile_time_constant8_test: Fail # We don't take the generic type into account yet.
77 canonical_const_test: Fail # We don't take the generic type into account yet. 78 canonical_const_test: Fail # We don't take the generic type into account yet.
78 79
79 # dart2js fails to reject type variable within static member
80 new_expression_type_args_test/02: Fail
81 type_variable_scope_test/00: Fail
82 type_variable_scope_test/01: Fail
83 type_variable_scope_test/02: Fail
84 type_variable_scope_test/03: Fail
85 type_variable_scope_test/04: Fail
86 type_variable_scope_test/05: Fail
87
88 # Support for optional parameters not conform to latest spec. 80 # Support for optional parameters not conform to latest spec.
89 function_type_alias_test: Fail 81 function_type_alias_test: Fail
90 function_type_alias2_test: Fail 82 function_type_alias2_test: Fail
91 named_parameters_type_test: Fail 83 named_parameters_type_test: Fail
92 positional_parameters_type_test: Fail 84 positional_parameters_type_test: Fail
93 named_parameters_test/01: Fail 85 named_parameters_test/01: Fail
94 named_parameters_test/03: Fail 86 named_parameters_test/03: Fail
95 named_parameters_test/05: Fail 87 named_parameters_test/05: Fail
96 named_parameters_test/07: Fail 88 named_parameters_test/07: Fail
97 named_parameters_test/09: Fail 89 named_parameters_test/09: Fail
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' 339 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError'
348 340
349 [ $compiler == dart2js && $runtime == ff && $system == windows ] 341 [ $compiler == dart2js && $runtime == ff && $system == windows ]
350 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. 342 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows.
351 part2_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. 343 part2_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows.
352 part_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. 344 part_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows.
353 export_test: Fail # Issue 5785 (root cause: issue 2264) 345 export_test: Fail # Issue 5785 (root cause: issue 2264)
354 export_cyclic_test: Fail # Issue 5785 (root cause: issue 2264) 346 export_cyclic_test: Fail # Issue 5785 (root cause: issue 2264)
355 import_combinators_test: Fail # Issue 5785 (root cause: issue 2264) 347 import_combinators_test: Fail # Issue 5785 (root cause: issue 2264)
356 first_class_types_libraries_test: Fail 348 first_class_types_libraries_test: Fail
OLDNEW
« lib/compiler/implementation/resolution/members.dart ('K') | « tests/language/language.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698