| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 LabelTest: Fail | 309 LabelTest: Fail |
| 310 ListLiteral3Test: Fail # vm and frog throw different exceptions | 310 ListLiteral3Test: Fail # vm and frog throw different exceptions |
| 311 ListLiteral4Test: Fail # missing type checks on index operations | 311 ListLiteral4Test: Fail # missing type checks on index operations |
| 312 ListTest: Fail # array bound checks not implemented | 312 ListTest: Fail # array bound checks not implemented |
| 313 LocalFunction3Test: Fail | 313 LocalFunction3Test: Fail |
| 314 LocalFunctionTest: Fail | 314 LocalFunctionTest: Fail |
| 315 ManyGenericInstanceofTest: Fail | 315 ManyGenericInstanceofTest: Fail |
| 316 MapLiteral4Test: Fail # missing checks on map index operations | 316 MapLiteral4Test: Fail # missing checks on map index operations |
| 317 MathTest: Fail | 317 MathTest: Fail |
| 318 MethodOverrideTest: Fail # checking on precise type rules for methods | 318 MethodOverrideTest: Fail # checking on precise type rules for methods |
| 319 NamedParametersPassingFalsyTest: Fail | |
| 320 NamedParametersTypeTest: Fail | 319 NamedParametersTypeTest: Fail |
| 321 NamedParametersWithConversionsTest: Fail | 320 NamedParametersWithConversionsTest: Fail |
| 322 NonConstSuperNegativeTest: Fail | 321 NonConstSuperNegativeTest: Fail |
| 323 NullPointerExceptionTest: Fail | 322 NullPointerExceptionTest: Fail |
| 324 NullTest: Fail | 323 NullTest: Fail |
| 325 NullToStringTest: Fail | 324 NullToStringTest: Fail |
| 326 NumbersTest: Fail | 325 NumbersTest: Fail |
| 327 OverrideFieldTest/01: Fail | 326 OverrideFieldTest/01: Fail |
| 328 OverrideFieldTest/04: Fail | 327 OverrideFieldTest/04: Fail |
| 329 OverrideMethodWithFieldTest/01: Fail | 328 OverrideMethodWithFieldTest/01: Fail |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 | 456 |
| 458 [ ($compiler == frog || $compiler == frogsh) && $runtime == none ] | 457 [ ($compiler == frog || $compiler == frogsh) && $runtime == none ] |
| 459 *: Skip | 458 *: Skip |
| 460 | 459 |
| 461 [ $arch == simarm ] | 460 [ $arch == simarm ] |
| 462 *: Skip | 461 *: Skip |
| 463 | 462 |
| 464 [ $arch == arm ] | 463 [ $arch == arm ] |
| 465 *: Skip | 464 *: Skip |
| 466 | 465 |
| OLD | NEW |