| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 ListTest: Fail # array bound checks not implemented | 254 ListTest: Fail # array bound checks not implemented |
| 255 LocalFunction3Test: Fail | 255 LocalFunction3Test: Fail |
| 256 LocalFunctionTest: Fail | 256 LocalFunctionTest: Fail |
| 257 ManyGenericInstanceofTest: Fail | 257 ManyGenericInstanceofTest: Fail |
| 258 MapLiteral4Test: Fail # missing checks on map index operations | 258 MapLiteral4Test: Fail # missing checks on map index operations |
| 259 MathTest: Fail | 259 MathTest: Fail |
| 260 MethodOverrideTest: Fail | 260 MethodOverrideTest: Fail |
| 261 NamedParametersPassingFalsyTest: Fail | 261 NamedParametersPassingFalsyTest: Fail |
| 262 NamedParametersTypeTest: Fail | 262 NamedParametersTypeTest: Fail |
| 263 NamedParametersWithConversionsTest: Fail | 263 NamedParametersWithConversionsTest: Fail |
| 264 NativePropertyFrogTest: Fail # Object #<A> has no method 'set$X' | |
| 265 NonConstSuperNegativeTest: Fail | 264 NonConstSuperNegativeTest: Fail |
| 266 NullPointerExceptionTest: Fail | 265 NullPointerExceptionTest: Fail |
| 267 NullTest: Fail | 266 NullTest: Fail |
| 268 NullToStringTest: Fail | 267 NullToStringTest: Fail |
| 269 NumbersTest: Fail | 268 NumbersTest: Fail |
| 270 ObjectDynamicMethodTest: Fail | 269 ObjectDynamicMethodTest: Fail |
| 271 OverrideMethodWithFieldTest/01: Fail | 270 OverrideMethodWithFieldTest/01: Fail |
| 272 OverrideFieldTest/01: Fail | 271 OverrideFieldTest/01: Fail |
| 273 OverrideFieldTest/04: Fail | 272 OverrideFieldTest/04: Fail |
| 274 ParameterInitializer5NegativeTest: Fail # Issue 581 | 273 ParameterInitializer5NegativeTest: Fail # Issue 581 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 NumberSyntaxTest: Timeout | 338 NumberSyntaxTest: Timeout |
| 340 | 339 |
| 341 [ $arch == x64 ] | 340 [ $arch == x64 ] |
| 342 *: Skip | 341 *: Skip |
| 343 | 342 |
| 344 [ $arch == simarm ] | 343 [ $arch == simarm ] |
| 345 *: Skip | 344 *: Skip |
| 346 | 345 |
| 347 [ $arch == arm ] | 346 [ $arch == arm ] |
| 348 *: Skip | 347 *: Skip |
| OLD | NEW |