| 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 28 matching lines...) Expand all Loading... |
| 39 ImplicitThisTest/none: Fail # Issue 374 | 39 ImplicitThisTest/none: Fail # Issue 374 |
| 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 | 48 |
| 49 # Issue 905. | 49 # Issue 441. |
| 50 TypeVariableBoundsTest/01: Fail | |
| 51 TypeVariableBoundsTest/02: Fail | |
| 52 TypeVariableBoundsTest/05: Fail | |
| 53 TypeVariableBoundsTest/06: Fail | |
| 54 TypeVariableBoundsTest/09: Fail | 50 TypeVariableBoundsTest/09: Fail |
| 55 TypeVariableBoundsTest/10: Fail | 51 TypeVariableBoundsTest/10: Fail |
| 56 | 52 |
| 57 SuperFirstConstructorTest: Fail # Issue 1372. | 53 SuperFirstConstructorTest: Fail # Issue 1372. |
| 58 | 54 |
| 59 # Issue 1427 | 55 # Issue 1427 |
| 60 CyclicTypeVariableTest: Fail | 56 CyclicTypeVariableTest: Fail |
| 61 CyclicTypeVariableTest/01: Fail | 57 CyclicTypeVariableTest/01: Fail |
| 62 CyclicTypeVariableTest/02: Fail | 58 CyclicTypeVariableTest/02: Fail |
| 63 CyclicTypeVariableTest/03: Fail | 59 CyclicTypeVariableTest/03: Fail |
| (...skipping 30 matching lines...) Expand all Loading... |
| 94 CompileTimeConstant3Test: Fail # Issue 1780 | 90 CompileTimeConstant3Test: Fail # Issue 1780 |
| 95 CompileTimeConstant6Test: Fail # Issue 1794 | 91 CompileTimeConstant6Test: Fail # Issue 1794 |
| 96 | 92 |
| 97 [ ($component == vm || $component == dartium) && $unchecked ] | 93 [ ($component == vm || $component == dartium) && $unchecked ] |
| 98 | 94 |
| 99 Prefix16NegativeTest: Fail # Bug 5532534 | 95 Prefix16NegativeTest: Fail # Bug 5532534 |
| 100 FunctionTypeAliasNegativeTest: Fail # Bug 5231617 | 96 FunctionTypeAliasNegativeTest: Fail # Bug 5231617 |
| 101 | 97 |
| 102 [ ($component == vm || $component == dartium) && $checked ] | 98 [ ($component == vm || $component == dartium) && $checked ] |
| 103 | 99 |
| 104 DefaultFactory2Test/01: Fail # Issue 943 | |
| 105 WrongNumberTypeArgumentsTest: Fail # This test should be negative | 100 WrongNumberTypeArgumentsTest: Fail # This test should be negative |
| 106 | 101 |
| 107 [ ($component == vm || $component == dartium) && $mode == debug ] | 102 [ ($component == vm || $component == dartium) && $mode == debug ] |
| 108 GCTest: Skip # Takes too long. | 103 GCTest: Skip # Takes too long. |
| 109 | 104 |
| 110 [ $component == vm && $mode == release ] | 105 [ $component == vm && $mode == release ] |
| 111 | 106 |
| 112 [ $component == dartc || $component == chromium ] | 107 [ $component == dartc || $component == chromium ] |
| 113 AbstractSyntaxTest/01: Fail | 108 AbstractSyntaxTest/01: Fail |
| 114 ConstConstructorSyntaxTest/05: Fail | 109 ConstConstructorSyntaxTest/05: Fail |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 [ $component == frog && $mode == debug ] | 461 [ $component == frog && $mode == debug ] |
| 467 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 462 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 468 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 463 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 469 | 464 |
| 470 [ $arch == simarm ] | 465 [ $arch == simarm ] |
| 471 *: Skip | 466 *: Skip |
| 472 | 467 |
| 473 [ $arch == arm ] | 468 [ $arch == arm ] |
| 474 *: Skip | 469 *: Skip |
| 475 | 470 |
| OLD | NEW |