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

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

Issue 12210127: First stab at mixins in VM compiler (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 | « runtime/vm/token.h ('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 # 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 compile_time_constant10_test/none: Fail # issue 5214 49 compile_time_constant10_test/none: Fail # issue 5214
50 50
51 export_cyclic_test: Fail, Crash # issue 6060 51 export_cyclic_test: Fail, Crash # issue 6060
52 duplicate_export_negative_test: Fail # issue 6134 52 duplicate_export_negative_test: Fail # issue 6134
53 type_annotation_test/04: Fail # Issue 6970 53 type_annotation_test/04: Fail # Issue 6970
54 type_annotation_test/06: Fail # Issue 6973 54 type_annotation_test/06: Fail # Issue 6973
55 type_annotation_test/09: Fail # Issue 6973 55 type_annotation_test/09: Fail # Issue 6973
56 56
57 type_parameter_literal_test: Fail # Issue 7551 57 type_parameter_literal_test: Fail # Issue 7551
58 58
59 mixin_field_test: Fail
60 mixin_is_test: Fail
61 mixin_method_test: Fail
62 mixin_naming_test: Fail
63 mixin_extends_field_test: Fail
64 mixin_extends_is_test: Fail
65 mixin_extends_method_test: Fail
66 mixin_mixin_test: Fail
67 mixin_illegal_syntax_test/none: Fail 59 mixin_illegal_syntax_test/none: Fail
68 mixin_illegal_superclass_test/none: Fail
69 mixin_illegal_constructor_test/none: Fail
70 mixin_illegal_static_access_test: Fail
71 mixin_illegal_super_use_test/none: Fail
72 mixin_implements_test: Fail
73 mixin_type_parameters_mixin_test: Fail 60 mixin_type_parameters_mixin_test: Fail
74 mixin_type_parameters_super_test: Fail 61 mixin_type_parameters_super_test: Fail
75 mixin_type_parameters_mixin_extends_test: Fail 62 mixin_type_parameters_mixin_extends_test: Fail
76 mixin_type_parameters_super_extends_test: Fail 63 mixin_type_parameters_super_extends_test: Fail
77 mixin_this_use_test: Fail
78 mixin_lib_extends_method_test: Fail
79 mixin_lib_extends_field_test: Fail 64 mixin_lib_extends_field_test: Fail
80 65
81 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ] 66 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ]
82 gc_test: Skip # Issue 1487, flaky. 67 gc_test: Skip # Issue 1487, flaky.
83 68
84 [ $compiler == none && $mode == debug ] 69 [ $compiler == none && $mode == debug ]
85 gc_test: Skip # Takes too long. 70 gc_test: Skip # Takes too long.
86 71
87 [ $compiler == none && $unchecked ] 72 [ $compiler == none && $unchecked ]
88 73
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 default_factory2_test/01: Fail # type arguments on redirecting factory not imple mented 343 default_factory2_test/01: Fail # type arguments on redirecting factory not imple mented
359 default_factory3_test: Fail # type arguments on redirecting factory not implemen ted 344 default_factory3_test: Fail # type arguments on redirecting factory not implemen ted
360 non_parameterized_factory_test: Fail # type arguments on redirecting factory not implemented 345 non_parameterized_factory_test: Fail # type arguments on redirecting factory not implemented
361 non_parameterized_factory2_test: Fail # type arguments on redirecting factory no t implemented 346 non_parameterized_factory2_test: Fail # type arguments on redirecting factory no t implemented
362 type_variable_scope_test: Fail # type arguments on redirecting factory not imple mented 347 type_variable_scope_test: Fail # type arguments on redirecting factory not imple mented
363 348
364 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te st depends on method names. 349 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te st depends on method names.
365 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de pends on method names. 350 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de pends on method names.
366 351
367 # Mixins fail on the VM. 352 # Mixins fail on the VM.
368 mixin_field_test: Fail # VM issue
369 mixin_is_test: Fail # VM issue
370 mixin_method_test: Fail # VM issue
371 mixin_naming_test: Fail # VM issue
372 mixin_extends_field_test: Fail # VM issue
373 mixin_extends_is_test: Fail # VM issue
374 mixin_extends_method_test: Fail # VM issue
375 mixin_mixin_test: Fail # VM issue
376 mixin_illegal_syntax_test/none: Fail # VM issue 353 mixin_illegal_syntax_test/none: Fail # VM issue
377 mixin_illegal_superclass_test/none: Fail # VM issue
378 mixin_illegal_constructor_test/none: Fail # VM issue 354 mixin_illegal_constructor_test/none: Fail # VM issue
379 mixin_illegal_super_use_test/none: Fail # VM issue
380 mixin_implements_test: Fail # VM issue
381 mixin_type_parameters_mixin_test: Fail # VM issue 355 mixin_type_parameters_mixin_test: Fail # VM issue
382 mixin_type_parameters_super_test: Fail # VM issue 356 mixin_type_parameters_super_test: Fail # VM issue
383 mixin_type_parameters_mixin_extends_test: Fail # VM issue 357 mixin_type_parameters_mixin_extends_test: Fail # VM issue
384 mixin_type_parameters_super_extends_test: Fail # VM issue 358 mixin_type_parameters_super_extends_test: Fail # VM issue
385 mixin_this_use_test: Fail # VM issue
386 mixin_lib_extends_method_test: Fail # VM issue
387 mixin_lib_extends_field_test: Fail # VM issue
388 359
389 # Malformed types not handled as unresolved: 360 # Malformed types not handled as unresolved:
390 import_core_prefix_test: Fail 361 import_core_prefix_test: Fail
391 prefix16_test: Fail 362 prefix16_test: Fail
392 prefix22_test: Fail 363 prefix22_test: Fail
393 type_annotation_test/04: Fail 364 type_annotation_test/04: Fail
394 type_annotation_test/06: Fail 365 type_annotation_test/06: Fail
395 366
396 # Calling unresolved class constructor: 367 # Calling unresolved class constructor:
397 call_nonexistent_constructor_test: Fail 368 call_nonexistent_constructor_test: Fail
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 *: Skip 557 *: Skip
587 558
588 [ $arch == simarm ] 559 [ $arch == simarm ]
589 *: Skip 560 *: Skip
590 561
591 [ $arch == mips ] 562 [ $arch == mips ]
592 *: Skip 563 *: Skip
593 564
594 [ $arch == simmips ] 565 [ $arch == simmips ]
595 *: Skip 566 *: Skip
OLDNEW
« no previous file with comments | « runtime/vm/token.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698