| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 Library5NegativeTest: Fail # issue with test see #354 | 240 Library5NegativeTest: Fail # issue with test see #354 |
| 241 Library6NegativeTest: Fail # issue with test see #354 | 241 Library6NegativeTest: Fail # issue with test see #354 |
| 242 ListLiteral3Test: Fail # vm and frog throw different exceptions | 242 ListLiteral3Test: Fail # vm and frog throw different exceptions |
| 243 ListLiteral4Test: Fail # missing type checks on index operations | 243 ListLiteral4Test: Fail # missing type checks on index operations |
| 244 ListTest: Fail # array bound checks not implemented | 244 ListTest: Fail # array bound checks not implemented |
| 245 LocalFunction3Test: Fail | 245 LocalFunction3Test: Fail |
| 246 LocalFunctionTest: Fail | 246 LocalFunctionTest: Fail |
| 247 ManyGenericInstanceofTest: Fail | 247 ManyGenericInstanceofTest: Fail |
| 248 MapLiteral4Test: Fail # missing checks on map index operations | 248 MapLiteral4Test: Fail # missing checks on map index operations |
| 249 MathTest: Fail | 249 MathTest: Fail |
| 250 MethodOverrideTest: Fail | 250 MethodOverrideTest: Fail # checking on precise type rules for methods |
| 251 NamedParametersPassingFalsyTest: Fail | 251 NamedParametersPassingFalsyTest: Fail |
| 252 NamedParametersTypeTest: Fail | 252 NamedParametersTypeTest: Fail |
| 253 NamedParametersWithConversionsTest: Fail | 253 NamedParametersWithConversionsTest: Fail |
| 254 NonConstSuperNegativeTest: Fail | 254 NonConstSuperNegativeTest: Fail |
| 255 NonParameterizedFactoryTest: Fail | 255 NonParameterizedFactoryTest: Fail |
| 256 NonParameterizedFactory2Test: Fail | 256 NonParameterizedFactory2Test: Fail |
| 257 NullPointerExceptionTest: Fail | 257 NullPointerExceptionTest: Fail |
| 258 NullTest: Fail | 258 NullTest: Fail |
| 259 NullToStringTest: Fail | 259 NullToStringTest: Fail |
| 260 NumbersTest: Fail | 260 NumbersTest: Fail |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 | 318 |
| 319 | 319 |
| 320 [ $arch == x64 ] | 320 [ $arch == x64 ] |
| 321 *: Skip | 321 *: Skip |
| 322 | 322 |
| 323 [ $arch == simarm ] | 323 [ $arch == simarm ] |
| 324 *: Skip | 324 *: Skip |
| 325 | 325 |
| 326 [ $arch == arm ] | 326 [ $arch == arm ] |
| 327 *: Skip | 327 *: Skip |
| OLD | NEW |