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. |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 # Problems specific to dartc debug mode | 68 # Problems specific to dartc debug mode |
69 [ ($arch == dartc || $arch == chromium) && $mode == debug ] | 69 [ ($arch == dartc || $arch == chromium) && $mode == debug ] |
70 | 70 |
71 | 71 |
72 [ $arch == dartc || $arch == chromium ] | 72 [ $arch == dartc || $arch == chromium ] |
73 Prefix3NegativeTest: Fail # Bug 5406175 | 73 Prefix3NegativeTest: Fail # Bug 5406175 |
74 Prefix11NegativeTest: Fail # Bug 5406175 | 74 Prefix11NegativeTest: Fail # Bug 5406175 |
75 Prefix12NegativeTest: Fail # Bug 5406175 | 75 Prefix12NegativeTest: Fail # Bug 5406175 |
76 Prefix14Test: Fail # Bug 5406175 | 76 Prefix14Test: Fail # Bug 5406175 |
77 Prefix15Test: Skip # Bug 5406175 | 77 Prefix15Test: Skip # Bug 5406175 |
78 FunctionTypeParameterNegativeTest: Fail # Bug 4568007 | |
79 ConstConstructor1NegativeTest: FAIL # Bug 5142545 | 78 ConstConstructor1NegativeTest: FAIL # Bug 5142545 |
80 ConstConstructor2NegativeTest: FAIL # Bug 5142545 | 79 ConstConstructor2NegativeTest: FAIL # Bug 5142545 |
81 ConstructorSetterNegativeTest: FAIL # Bug 92 | 80 ConstructorSetterNegativeTest: FAIL # Bug 92 |
82 | 81 |
83 MathTest: FAIL # Bug 5165080 | 82 MathTest: FAIL # Bug 5165080 |
84 StringConcatTest: FAIL # Bug 5196164 | 83 StringConcatTest: FAIL # Bug 5196164 |
85 NamedParametersTypeTest: Fail # Implementation in progress. | 84 NamedParametersTypeTest: Fail # Implementation in progress. |
86 NamedParametersWithConversionsTest: Fail # Implementation in progress. | 85 NamedParametersWithConversionsTest: Fail # Implementation in progress. |
87 NamedParametersNegativeTest: Fail # Implementation in progress. | 86 NamedParametersNegativeTest: Fail # Implementation in progress. |
88 NamedParameters2NegativeTest: Fail # Implementation in progress. | 87 NamedParameters2NegativeTest: Fail # Implementation in progress. |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 StackTraceTest: Fail # Bug 4971920. | 127 StackTraceTest: Fail # Bug 4971920. |
129 ExpectTest: Fail # Missing extensions to class Expect. | 128 ExpectTest: Fail # Missing extensions to class Expect. |
130 DivByZeroTest: Fail # Bug 5184183 | 129 DivByZeroTest: Fail # Bug 5184183 |
131 OverrideFieldMethod1NegativeTest: Fail # Bug 5215249 | 130 OverrideFieldMethod1NegativeTest: Fail # Bug 5215249 |
132 OverrideFieldMethod2NegativeTest: Fail # Bug 5215249 | 131 OverrideFieldMethod2NegativeTest: Fail # Bug 5215249 |
133 OverrideFieldMethod3NegativeTest: Fail # Bug 5215249 | 132 OverrideFieldMethod3NegativeTest: Fail # Bug 5215249 |
134 OverrideFieldMethod4NegativeTest: Fail # Bug 5215249 | 133 OverrideFieldMethod4NegativeTest: Fail # Bug 5215249 |
135 OverrideFieldMethod5NegativeTest: Fail # Bug 5215249 | 134 OverrideFieldMethod5NegativeTest: Fail # Bug 5215249 |
136 OverrideFieldMethod6NegativeTest: Fail # Bug 5215249 | 135 OverrideFieldMethod6NegativeTest: Fail # Bug 5215249 |
137 CharEscapeTest: Fail | 136 CharEscapeTest: Fail |
138 FunctionTypeParameter2NegativeTest: Fail # Bug 4568007 | |
139 | 137 |
140 # The following tests use missing error classes. Bug 4385894. | 138 # The following tests use missing error classes. Bug 4385894. |
141 AssertTest: Fail # Uses AssertError class. | 139 AssertTest: Fail # Uses AssertError class. |
142 | 140 |
143 ThirdTest: Fail # Bug 5339586 | 141 ThirdTest: Fail # Bug 5339586 |
144 | 142 |
145 | 143 |
146 # VM specific tests that should not be run by DartC. | 144 # VM specific tests that should not be run by DartC. |
147 *VMTest: Skip | 145 *VMTest: Skip |
148 | 146 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 TypedMessageTest: Fail # Bug 5246195 | 181 TypedMessageTest: Fail # Bug 5246195 |
184 | 182 |
185 [ $arch == x64 ] | 183 [ $arch == x64 ] |
186 *: Skip | 184 *: Skip |
187 | 185 |
188 [ $arch == simarm ] | 186 [ $arch == simarm ] |
189 *: Skip | 187 *: Skip |
190 | 188 |
191 [ $arch == arm ] | 189 [ $arch == arm ] |
192 *: Skip | 190 *: Skip |
OLD | NEW |