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

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

Issue 10916039: Throw AbstractClassInstantiationError if an abstract class is instantiated (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/interface_test.dart ('k') | tests/language/language_dart2js.status » ('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 # This directory contains tests that are intended to show the 5 # This directory contains tests that are intended to show the
6 # current state of the language. 6 # current state of the language.
7 7
8 # In order to maintain maximum test coverage for all builds, 8 # In order to maintain maximum test coverage for all builds,
9 # please use the following procedure to mark a test 9 # please use the following procedure to mark a test
10 # failed on architectures other than the one you are working on. 10 # failed on architectures other than the one you are working on.
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 [ $browser ] 176 [ $browser ]
177 177
178 178
179 [ $arch == simarm ] 179 [ $arch == simarm ]
180 *: Skip 180 *: Skip
181 181
182 [ $arch == arm ] 182 [ $arch == arm ]
183 *: Skip 183 *: Skip
184 184
185 [ $compiler == dart2dart ] 185 [ $compiler == dart2dart ]
186 interface_negative_test: Fail
186 argument_definition_test/*: Skip # Not implemented. 187 argument_definition_test/*: Skip # Not implemented.
187 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved ()' which fails on the VM 188 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved ()' which fails on the VM
188 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved ()' which fails on the VM 189 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved ()' which fails on the VM
189 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved ()' which fails on the VM 190 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved ()' which fails on the VM
190 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved ()' which fails on the VM 191 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved ()' which fails on the VM
191 call_nonexistent_constructor_test: Fail # Issue 1031 192 call_nonexistent_constructor_test: Fail # Issue 1031
192 const_var_test: Fail # Map literals take 2 type arguments. 193 const_var_test: Fail # Map literals take 2 type arguments.
193 map_literal3_test: Fail # Map literals take 2 type arguments. 194 map_literal3_test: Fail # Map literals take 2 type arguments.
194 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. 195 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading.
195 field1_negative_test: Fail, OK # Bad test: assumes eager loading. 196 field1_negative_test: Fail, OK # Bad test: assumes eager loading.
(...skipping 22 matching lines...) Expand all
218 # external keyword is not yet supported by dart2js/dart2dart. 219 # external keyword is not yet supported by dart2js/dart2dart.
219 external_test/*: Skip 220 external_test/*: Skip
220 # Call operator is not supported by DartVM (see suppression above.) 221 # Call operator is not supported by DartVM (see suppression above.)
221 call_operator_test: Fail 222 call_operator_test: Fail
222 # dart2js frontend doesn't even analyse problematic classes. 223 # dart2js frontend doesn't even analyse problematic classes.
223 class_extends_negative_test: Fail 224 class_extends_negative_test: Fail
224 duplicate_implements_test/01: Fail 225 duplicate_implements_test/01: Fail
225 duplicate_implements_test/02: Fail 226 duplicate_implements_test/02: Fail
226 duplicate_implements_test/03: Fail 227 duplicate_implements_test/03: Fail
227 duplicate_implements_test/04: Fail 228 duplicate_implements_test/04: Fail
228 empty_body_member_negative_test: Fail
229 field2_negative_test: Fail 229 field2_negative_test: Fail
230 field4_negative_test: Fail 230 field4_negative_test: Fail
231 field5_negative_test: Fail 231 field5_negative_test: Fail
232 field6a_negative_test: Fail 232 field6a_negative_test: Fail
233 field7a_negative_test: Fail 233 field7a_negative_test: Fail
234 interface_factory_constructor_negative_test: Fail 234 interface_factory_constructor_negative_test: Fail
235 interface_static_method_negative_test: Fail 235 interface_static_method_negative_test: Fail
236 non_const_super_negative_test: Fail 236 non_const_super_negative_test: Fail
237 method_override2_test/00: Fail 237 method_override2_test/00: Fail
238 method_override2_test/02: Fail 238 method_override2_test/02: Fail
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 disable_privacy_test: Fail, Ok 287 disable_privacy_test: Fail, Ok
288 # This test hard codes name of file being run and precise position. 288 # This test hard codes name of file being run and precise position.
289 generic_test: Fail, Ok 289 generic_test: Fail, Ok
290 # Minified mode failures. 290 # Minified mode failures.
291 # TODO(antonm): proper support in test framework. 291 # TODO(antonm): proper support in test framework.
292 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("foo"). 292 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("foo").
293 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv oked method ("foo"). 293 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv oked method ("foo").
294 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo o"). 294 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo o").
295 295
296 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead of static type warning. 296 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead of static type warning.
OLDNEW
« no previous file with comments | « tests/language/interface_test.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698