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

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: Created 7 years, 11 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
77
karlklose 2013/01/25 10:12:47 Remove extra line?
74 78
75 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ] 79 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ]
76 gc_test: Skip # Issue 1487, flaky. 80 gc_test: Skip # Issue 1487, flaky.
77 81
78 [ $compiler == none && $mode == debug ] 82 [ $compiler == none && $mode == debug ]
79 gc_test: Skip # Takes too long. 83 gc_test: Skip # Takes too long.
80 84
81 [ $compiler == none && $unchecked ] 85 [ $compiler == none && $unchecked ]
82 86
83 # Only checked mode reports an error on type assignment 87 # 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 349 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 350 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 351 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 352 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 353 type_variable_scope_test: Fail # type arguments on redirecting factory not imple mented
350 354
351 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te st depends on method names. 355 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. 356 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de pends on method names.
353 357
354 # Mixins fail on the VM. 358 # Mixins fail on the VM.
355 mixin_field_test: Fail # VM issue 359 mixin_field_test: Fail # VM issue
356 mixin_is_test: Fail # VM issue 360 mixin_is_test: Fail # VM issue
357 mixin_method_test: Fail # VM issue 361 mixin_method_test: Fail # VM issue
358 mixin_naming_test: Fail # VM issue 362 mixin_naming_test: Fail # VM issue
359 mixin_extends_field_test: Fail # VM issue 363 mixin_extends_field_test: Fail # VM issue
360 mixin_extends_is_test: Fail # VM issue 364 mixin_extends_is_test: Fail # VM issue
361 mixin_extends_method_test: Fail # VM issue 365 mixin_extends_method_test: Fail # VM issue
362 mixin_mixin_test: Fail # VM issue 366 mixin_mixin_test: Fail # VM issue
363 mixin_illegal_syntax_test/none: Fail # VM issue 367 mixin_illegal_syntax_test/none: Fail # VM issue
364 mixin_illegal_superclass_test/none: Fail # VM issue 368 mixin_illegal_superclass_test/none: Fail # VM issue
365 mixin_illegal_constructor_test/none: Fail # VM issue 369 mixin_illegal_constructor_test/none: Fail # VM issue
366 mixin_illegal_super_use_test/none: Fail # VM issue 370 mixin_illegal_super_use_test/none: Fail # VM issue
367 mixin_implements_test: Fail # VM issue 371 mixin_implements_test: Fail # VM issue
368 mixin_type_parameters_super_test: Fail # VM issue 372 mixin_type_parameters_mixin_test: Fail # VM issue
373 mixin_type_parameters_super_test: Fail # VM issue
374 mixin_type_parameters_mixin_extends_test: Fail # VM issue
375 mixin_type_parameters_super_extends_test: Fail # VM issue
369 376
370 # Malformed types not handled as unresolved: 377 # Malformed types not handled as unresolved:
371 import_core_prefix_test: Fail 378 import_core_prefix_test: Fail
372 prefix16_test: Fail 379 prefix16_test: Fail
373 prefix22_test: Fail 380 prefix22_test: Fail
374 type_annotation_test/04: Fail 381 type_annotation_test/04: Fail
375 type_annotation_test/06: Fail 382 type_annotation_test/06: Fail
376 383
377 # Calling unresolved class constructor: 384 # Calling unresolved class constructor:
378 call_nonexistent_constructor_test: Fail 385 call_nonexistent_constructor_test: Fail
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 *: Skip 574 *: Skip
568 575
569 [ $arch == simarm ] 576 [ $arch == simarm ]
570 *: Skip 577 *: Skip
571 578
572 [ $arch == mips ] 579 [ $arch == mips ]
573 *: Skip 580 *: Skip
574 581
575 [ $arch == simmips ] 582 [ $arch == simmips ]
576 *: Skip 583 *: Skip
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698