| OLD | NEW |
| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 LibrarySameNameUsedTest: Fail # Issue 686 | 39 LibrarySameNameUsedTest: Fail # Issue 686 |
| 40 | 40 |
| 41 # These bugs refer currently ongoing language discussions. | 41 # These bugs refer currently ongoing language discussions. |
| 42 Constructor5Test: Fail # (Discussion ongoing) | 42 Constructor5Test: Fail # (Discussion ongoing) |
| 43 Constructor6Test: Fail # (Discussion ongoing) | 43 Constructor6Test: Fail # (Discussion ongoing) |
| 44 | 44 |
| 45 # Regular bugs which should be fixed. | 45 # Regular bugs which should be fixed. |
| 46 | 46 |
| 47 ConstInit6NegativeTest: Fail # Issue 811 | 47 ConstInit6NegativeTest: Fail # Issue 811 |
| 48 WrongNumberTypeArgumentsTest: Fail # Issue 441 | |
| 49 | 48 |
| 50 # Issue 905. | 49 # Issue 905. |
| 51 TypeVariableBoundsTest/01: Fail | 50 TypeVariableBoundsTest/01: Fail |
| 52 TypeVariableBoundsTest/02: Fail | 51 TypeVariableBoundsTest/02: Fail |
| 53 TypeVariableBoundsTest/05: Fail | 52 TypeVariableBoundsTest/05: Fail |
| 54 TypeVariableBoundsTest/06: Fail | 53 TypeVariableBoundsTest/06: Fail |
| 55 TypeVariableBoundsTest/09: Fail | 54 TypeVariableBoundsTest/09: Fail |
| 56 TypeVariableBoundsTest/10: Fail | 55 TypeVariableBoundsTest/10: Fail |
| 57 | 56 |
| 58 | 57 |
| 59 # DartC or Frog specific tests that should not be run by the VM | 58 # DartC or Frog specific tests that should not be run by the VM |
| 60 *DartcTest: Skip | 59 *DartcTest: Skip |
| 61 *DartcNegativeTest: Skip | 60 *DartcNegativeTest: Skip |
| 62 *FrogTest: Skip | 61 *FrogTest: Skip |
| 63 *FrogNegativeTest: Skip | 62 *FrogNegativeTest: Skip |
| 64 | 63 |
| 65 # Issue 1034 | 64 # Issue 1034 |
| 66 ConstructorDuplicateInitializersTest/01: Fail | 65 ConstructorDuplicateInitializersTest/01: Fail |
| 67 ConstructorDuplicateInitializersTest/02: Fail | 66 ConstructorDuplicateInitializersTest/02: Fail |
| 68 | 67 |
| 68 [ ($component == vm || $component == dartium) && $unchecked ] |
| 69 |
| 70 Prefix16NegativeTest: Fail # Bug 5532534 |
| 71 FunctionTypeAliasNegativeTest: Fail # Bug 5231617 |
| 72 |
| 69 [ ($component == vm || $component == dartium) && $checked ] | 73 [ ($component == vm || $component == dartium) && $checked ] |
| 70 | 74 |
| 71 DefaultFactory2Test/01: Fail # Issue 943 | 75 DefaultFactory2Test/01: Fail # Issue 943 |
| 76 WrongNumberTypeArgumentsTest: Fail # This test should be negative |
| 72 | 77 |
| 73 [ $component == vm && $mode == debug ] | 78 [ $component == vm && $mode == debug ] |
| 74 | 79 |
| 75 [ $component == vm && $mode == release ] | 80 [ $component == vm && $mode == release ] |
| 76 | 81 |
| 77 # Problems specific to dartc optimized mode | 82 # Problems specific to dartc optimized mode |
| 78 [ ($component == dartc || $component == chromium) && $mode == release ] | 83 [ ($component == dartc || $component == chromium) && $mode == release ] |
| 79 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr
owing NSME | 84 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr
owing NSME |
| 80 CTConst2Test: Fail # Codesite issue 124 | 85 CTConst2Test: Fail # Codesite issue 124 |
| 81 CallThroughNullGetterTest: Fail # Bug 5391976 | 86 CallThroughNullGetterTest: Fail # Bug 5391976 |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 # these tests are inconsistent in frogium and frogsh-node, investigate | 370 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 366 StaticField1RunNegativeTest: Pass # but error is not correct | 371 StaticField1RunNegativeTest: Pass # but error is not correct |
| 367 StaticField2RunNegativeTest: Pass # but error is not correct | 372 StaticField2RunNegativeTest: Pass # but error is not correct |
| 368 | 373 |
| 369 | 374 |
| 370 [ $arch == simarm ] | 375 [ $arch == simarm ] |
| 371 *: Skip | 376 *: Skip |
| 372 | 377 |
| 373 [ $arch == arm ] | 378 [ $arch == arm ] |
| 374 *: Skip | 379 *: Skip |
| OLD | NEW |