OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 an architecture other than the one you are working on. | 10 # failed on an architecture other than the one you are working on. |
11 # | 11 # |
12 # 1) Copy the old version of the test to | 12 # 1) Copy the old version of the test to |
13 # tests/language/src/TestName[Dartc|VM]Test.dart. | 13 # tests/language/src/TestName[Dartc|VM]Test.dart. |
14 # 2) File a bug for the failure due to the language change. | 14 # 2) File a bug for the failure due to the language change. |
15 # 3) Update the language/src directory with the updated test. | 15 # 3) Update the language/src directory with the updated test. |
16 | 16 |
17 prefix language | 17 prefix language |
18 | 18 |
19 | 19 |
20 [ $component == vm || $component == dartium ] | 20 [ $component == vm || $component == dartium ] |
21 ClassTest: Fail # Bug 4504458 (pseudo keyword) | 21 ClassTest: Fail # Bug 4504458 (pseudo keyword) |
22 NamingTest: Fail # Bug 4504458 (pseudo keyword) | 22 NamingTest: Fail # Bug 4504458 (pseudo keyword) |
23 SuperTest: Fail # Bug 4995181 | |
24 TypeVariableBoundsTest/none: Fail # Bug 5257789 | 23 TypeVariableBoundsTest/none: Fail # Bug 5257789 |
25 TypeVariableBoundsTest/02: Fail # Bug 5257789 | 24 TypeVariableBoundsTest/02: Fail # Bug 5257789 |
26 TypeVariableBoundsTest/03: Fail # Bug 5257789 | 25 TypeVariableBoundsTest/03: Fail # Bug 5257789 |
27 TypeVariableBoundsTest/04: Fail # Bug 5257789 | 26 TypeVariableBoundsTest/04: Fail # Bug 5257789 |
28 TypeVariableBoundsTest/07: Fail # Bug 5257789 | 27 TypeVariableBoundsTest/07: Fail # Bug 5257789 |
29 TypeVariableScopeTest/03: Fail # Bug 5349550, was 5316513 | 28 TypeVariableScopeTest/03: Fail # Bug 5349550, was 5316513 |
30 TypeVariableScopeTest/04: Fail # Bug 5349550, was 5316513 | 29 TypeVariableScopeTest/04: Fail # Bug 5349550, was 5316513 |
31 ImpliedInterfaceTest: Fail # Bug 5349944 | 30 ImpliedInterfaceTest: Fail # Bug 5349944 |
32 | 31 |
33 # These bugs refer currently ongoing language discussions. | 32 # These bugs refer currently ongoing language discussions. |
34 ExampleConstructorTest: Fail # Bug 4995181 | |
35 Constructor2Test: Fail # Bug 4995181 (evaluation order) | |
36 Constructor3Test: Fail # Bug 4995181 (evaluation order) | |
37 Constructor5Test: Fail # Bug 8440015 | 33 Constructor5Test: Fail # Bug 8440015 |
38 Constructor6Test: Fail # Bug 8440015 | 34 Constructor6Test: Fail # Bug 8440015 |
39 | 35 |
40 # Regular bugs which should be fixed. | 36 # Regular bugs which should be fixed. |
41 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. | 37 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. |
42 ManyEchoServerTest: Skip # Bug 5103754 | 38 ManyEchoServerTest: Skip # Bug 5103754 |
43 | 39 |
44 ConstructorReturnNegativeTest: Fail # Issue 224 | 40 ConstructorReturnNegativeTest: Fail # Issue 224 |
45 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | 41 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 |
46 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | 42 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 TypedMessageTest: Fail # Bug 5246195 | 177 TypedMessageTest: Fail # Bug 5246195 |
182 | 178 |
183 [ $arch == x64 ] | 179 [ $arch == x64 ] |
184 *: Skip | 180 *: Skip |
185 | 181 |
186 [ $arch == simarm ] | 182 [ $arch == simarm ] |
187 *: Skip | 183 *: Skip |
188 | 184 |
189 [ $arch == arm ] | 185 [ $arch == arm ] |
190 *: Skip | 186 *: Skip |
OLD | NEW |