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

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

Issue 12036101: Add more tests and fix the parser to deal with generic superclasses for mixin applications. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove newline. 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
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 mixin_extends_field_test: Fail 63 mixin_extends_field_test: Fail
64 mixin_extends_is_test: Fail 64 mixin_extends_is_test: Fail
65 mixin_extends_method_test: Fail 65 mixin_extends_method_test: Fail
66 mixin_mixin_test: Fail 66 mixin_mixin_test: Fail
67 mixin_illegal_syntax_test/none: Fail 67 mixin_illegal_syntax_test/none: Fail
68 mixin_illegal_superclass_test/none: Fail 68 mixin_illegal_superclass_test/none: Fail
69 mixin_illegal_constructor_test/none: Fail 69 mixin_illegal_constructor_test/none: Fail
70 mixin_illegal_static_access_test: Fail 70 mixin_illegal_static_access_test: Fail
71 mixin_illegal_super_use_test/none: Fail 71 mixin_illegal_super_use_test/none: Fail
72 mixin_implements_test: Fail 72 mixin_implements_test: Fail
73 mixin_type_parameters_mixin_test: Fail
73 mixin_type_parameters_super_test: Fail 74 mixin_type_parameters_super_test: Fail
75 mixin_type_parameters_mixin_extends_test: Fail
76 mixin_type_parameters_super_extends_test: Fail
74 77
75 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ] 78 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ]
76 gc_test: Skip # Issue 1487, flaky. 79 gc_test: Skip # Issue 1487, flaky.
77 80
78 [ $compiler == none && $mode == debug ] 81 [ $compiler == none && $mode == debug ]
79 gc_test: Skip # Takes too long. 82 gc_test: Skip # Takes too long.
80 83
81 [ $compiler == none && $unchecked ] 84 [ $compiler == none && $unchecked ]
82 85
83 # Only checked mode reports an error on type assignment 86 # Only checked mode reports an error on type assignment
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 default_factory2_test/01: Fail # type arguments on redirecting factory not imple mented 348 default_factory2_test/01: Fail # type arguments on redirecting factory not imple mented
346 default_factory3_test: Fail # type arguments on redirecting factory not implemen ted 349 default_factory3_test: Fail # type arguments on redirecting factory not implemen ted
347 non_parameterized_factory_test: Fail # type arguments on redirecting factory not implemented 350 non_parameterized_factory_test: Fail # type arguments on redirecting factory not implemented
348 non_parameterized_factory2_test: Fail # type arguments on redirecting factory no t implemented 351 non_parameterized_factory2_test: Fail # type arguments on redirecting factory no t implemented
349 type_variable_scope_test: Fail # type arguments on redirecting factory not imple mented 352 type_variable_scope_test: Fail # type arguments on redirecting factory not imple mented
350 353
351 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te st depends on method names. 354 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te st depends on method names.
352 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de pends on method names. 355 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de pends on method names.
353 356
354 # Mixins fail on the VM. 357 # Mixins fail on the VM.
355 mixin_field_test: Fail # VM issue 358 mixin_field_test: Fail # VM issue
356 mixin_is_test: Fail # VM issue 359 mixin_is_test: Fail # VM issue
357 mixin_method_test: Fail # VM issue 360 mixin_method_test: Fail # VM issue
358 mixin_naming_test: Fail # VM issue 361 mixin_naming_test: Fail # VM issue
359 mixin_extends_field_test: Fail # VM issue 362 mixin_extends_field_test: Fail # VM issue
360 mixin_extends_is_test: Fail # VM issue 363 mixin_extends_is_test: Fail # VM issue
361 mixin_extends_method_test: Fail # VM issue 364 mixin_extends_method_test: Fail # VM issue
362 mixin_mixin_test: Fail # VM issue 365 mixin_mixin_test: Fail # VM issue
363 mixin_illegal_syntax_test/none: Fail # VM issue 366 mixin_illegal_syntax_test/none: Fail # VM issue
364 mixin_illegal_superclass_test/none: Fail # VM issue 367 mixin_illegal_superclass_test/none: Fail # VM issue
365 mixin_illegal_constructor_test/none: Fail # VM issue 368 mixin_illegal_constructor_test/none: Fail # VM issue
366 mixin_illegal_super_use_test/none: Fail # VM issue 369 mixin_illegal_super_use_test/none: Fail # VM issue
367 mixin_implements_test: Fail # VM issue 370 mixin_implements_test: Fail # VM issue
368 mixin_type_parameters_super_test: Fail # VM issue 371 mixin_type_parameters_mixin_test: Fail # VM issue
372 mixin_type_parameters_super_test: Fail # VM issue
373 mixin_type_parameters_mixin_extends_test: Fail # VM issue
374 mixin_type_parameters_super_extends_test: Fail # VM issue
369 375
370 # Malformed types not handled as unresolved: 376 # Malformed types not handled as unresolved:
371 import_core_prefix_test: Fail 377 import_core_prefix_test: Fail
372 prefix16_test: Fail 378 prefix16_test: Fail
373 prefix22_test: Fail 379 prefix22_test: Fail
374 type_annotation_test/04: Fail 380 type_annotation_test/04: Fail
375 type_annotation_test/06: Fail 381 type_annotation_test/06: Fail
376 382
377 # Calling unresolved class constructor: 383 # Calling unresolved class constructor:
378 call_nonexistent_constructor_test: Fail 384 call_nonexistent_constructor_test: Fail
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 *: Skip 573 *: Skip
568 574
569 [ $arch == simarm ] 575 [ $arch == simarm ]
570 *: Skip 576 *: Skip
571 577
572 [ $arch == mips ] 578 [ $arch == mips ]
573 *: Skip 579 *: Skip
574 580
575 [ $arch == simmips ] 581 [ $arch == simmips ]
576 *: Skip 582 *: Skip
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/scanner/parser.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698