| 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 architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 [ $component == frogsh || $component == frog ] | 202 [ $component == frogsh || $component == frog ] |
| 203 | 203 |
| 204 # VM or DartC specific tests not to be run by Frog. See language.status | 204 # VM or DartC specific tests not to be run by Frog. See language.status |
| 205 *VMTest: Skip | 205 *VMTest: Skip |
| 206 *VMNegativeTest: Skip | 206 *VMNegativeTest: Skip |
| 207 *DartcTest: Skip | 207 *DartcTest: Skip |
| 208 *DartcNegativeTest: Skip | 208 *DartcNegativeTest: Skip |
| 209 | 209 |
| 210 BitOperationsTest: Skip # relies on big integers not available in JS | 210 BitOperationsTest: Skip # relies on big integers not available in JS |
| 211 CallThroughGetterTest: Fail | 211 CallThroughGetterTest: Fail |
| 212 CallThroughNullGetterTest: Fail | |
| 213 CanonicalConstTest: Fail # type in const array allocation is erased | 212 CanonicalConstTest: Fail # type in const array allocation is erased |
| 214 CharEscapeTest: Fail | 213 CharEscapeTest: Fail |
| 215 ClassOverrideNegativeTest: Fail | 214 ClassOverrideNegativeTest: Fail |
| 216 ClosuresWithComplexParamsTest: Fail | 215 ClosuresWithComplexParamsTest: Fail |
| 217 CompoundAssignmentOperatorTest: Fail | 216 CompoundAssignmentOperatorTest: Fail |
| 218 ConstFactoryNegativeTest: Fail | 217 ConstFactoryNegativeTest: Fail |
| 219 ConstObjectsAreImmutableTest: Fail | 218 ConstObjectsAreImmutableTest: Fail |
| 220 ConstructorDefaultTest: Fail | 219 ConstructorDefaultTest: Fail |
| 221 ConstructorSetterNegativeTest: Fail # we were passing this test for the wrong
reason | 220 ConstructorSetterNegativeTest: Fail # we were passing this test for the wrong
reason |
| 222 DynamicTest: Fail # newly added on 10/27 | 221 DynamicTest: Fail # newly added on 10/27 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 Library1NegativeTest: Fail | 267 Library1NegativeTest: Fail |
| 269 Library4NegativeTest: Fail | 268 Library4NegativeTest: Fail |
| 270 Library5NegativeTest: Fail # newly added on r658 (10/24) | 269 Library5NegativeTest: Fail # newly added on r658 (10/24) |
| 271 Library6NegativeTest: Fail # newly added on r658 (10/24) | 270 Library6NegativeTest: Fail # newly added on r658 (10/24) |
| 272 ListLiteral3Test: Fail | 271 ListLiteral3Test: Fail |
| 273 ListTest: Fail # array bound checks not implemented | 272 ListTest: Fail # array bound checks not implemented |
| 274 LocalFunction3Test: Fail | 273 LocalFunction3Test: Fail |
| 275 LocalFunctionTest: Fail | 274 LocalFunctionTest: Fail |
| 276 ManyGenericInstanceofTest: Fail | 275 ManyGenericInstanceofTest: Fail |
| 277 MathTest: Fail | 276 MathTest: Fail |
| 278 MethodInvocationTest: Fail | |
| 279 MethodOverrideTest: Fail # newly added on r771 (10/26) | 277 MethodOverrideTest: Fail # newly added on r771 (10/26) |
| 280 NamedParameters5NegativeTest: Skip # passes, but for the wrong reason | 278 NamedParameters5NegativeTest: Skip # passes, but for the wrong reason |
| 281 NamedParameters6NegativeTest: Skip # passes, but for the wrong reason | 279 NamedParameters6NegativeTest: Skip # passes, but for the wrong reason |
| 282 NamedParameters7NegativeTest: Skip # passes, but for the wrong reason | 280 NamedParameters7NegativeTest: Skip # passes, but for the wrong reason |
| 283 NamedParameters8NegativeTest: Skip # passes, but for the wrong reason | 281 NamedParameters8NegativeTest: Skip # passes, but for the wrong reason |
| 284 NamedParametersPassingFalsyTest: Fail | 282 NamedParametersPassingFalsyTest: Fail |
| 285 NamedParametersTypeTest: Fail | 283 NamedParametersTypeTest: Fail |
| 286 NamedParametersWithConversionsTest: Fail | 284 NamedParametersWithConversionsTest: Fail |
| 287 NamingTest: Fail | 285 NamingTest: Fail |
| 288 NonConstSuperNegativeTest: Fail | 286 NonConstSuperNegativeTest: Fail |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 | 342 |
| 345 | 343 |
| 346 [ $arch == x64 ] | 344 [ $arch == x64 ] |
| 347 *: Skip | 345 *: Skip |
| 348 | 346 |
| 349 [ $arch == simarm ] | 347 [ $arch == simarm ] |
| 350 *: Skip | 348 *: Skip |
| 351 | 349 |
| 352 [ $arch == arm ] | 350 [ $arch == arm ] |
| 353 *: Skip | 351 *: Skip |
| OLD | NEW |