| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 ListTest: Fail # array bound checks not implemented | 252 ListTest: Fail # array bound checks not implemented |
| 253 LocalFunction3Test: Fail | 253 LocalFunction3Test: Fail |
| 254 LocalFunctionTest: Fail | 254 LocalFunctionTest: Fail |
| 255 ManyGenericInstanceofTest: Fail | 255 ManyGenericInstanceofTest: Fail |
| 256 MapLiteral4Test: Fail # missing checks on map index operations | 256 MapLiteral4Test: Fail # missing checks on map index operations |
| 257 MathTest: Fail | 257 MathTest: Fail |
| 258 MethodOverrideTest: Fail | 258 MethodOverrideTest: Fail |
| 259 NamedParametersPassingFalsyTest: Fail | 259 NamedParametersPassingFalsyTest: Fail |
| 260 NamedParametersTypeTest: Fail | 260 NamedParametersTypeTest: Fail |
| 261 NamedParametersWithConversionsTest: Fail | 261 NamedParametersWithConversionsTest: Fail |
| 262 NativePropertyFrogTest: Fail # Object #<A> has no method 'set$X' | |
| 263 NonConstSuperNegativeTest: Fail | 262 NonConstSuperNegativeTest: Fail |
| 264 NullPointerExceptionTest: Fail | 263 NullPointerExceptionTest: Fail |
| 265 NullTest: Fail | 264 NullTest: Fail |
| 266 NullToStringTest: Fail | 265 NullToStringTest: Fail |
| 267 NumbersTest: Fail | 266 NumbersTest: Fail |
| 268 ObjectDynamicMethodTest: Fail | 267 ObjectDynamicMethodTest: Fail |
| 269 OverrideMethodWithFieldTest/01: Fail | 268 OverrideMethodWithFieldTest/01: Fail |
| 270 OverrideFieldTest/01: Fail | 269 OverrideFieldTest/01: Fail |
| 271 OverrideFieldTest/04: Fail | 270 OverrideFieldTest/04: Fail |
| 272 ParameterInitializer5NegativeTest: Fail # Issue 581 | 271 ParameterInitializer5NegativeTest: Fail # Issue 581 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 TypeVariableBoundsTest/02: Fail | 320 TypeVariableBoundsTest/02: Fail |
| 322 TypeVariableBoundsTest/06: Fail | 321 TypeVariableBoundsTest/06: Fail |
| 323 | 322 |
| 324 | 323 |
| 325 [ $component == frog || $component == frogsh || $component == leg ] | 324 [ $component == frog || $component == frogsh || $component == leg ] |
| 326 # these tests are inconsistent in frogium and frogsh-node, investigate | 325 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 327 InstanceofTest: Fail | 326 InstanceofTest: Fail |
| 328 StaticField1RunNegativeTest: Pass | 327 StaticField1RunNegativeTest: Pass |
| 329 StaticField2RunNegativeTest: Pass | 328 StaticField2RunNegativeTest: Pass |
| 330 NumberSyntaxTest: Fail | 329 NumberSyntaxTest: Fail |
| 331 NativeNamedConstructors2FrogTest: Fail # ReferenceError: A is not defined. | |
| 332 | 330 |
| 333 [ $component == frogium ] | 331 [ $component == frogium ] |
| 334 # these tests are inconsistent in frogium and frogsh-node, investigate | 332 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 335 StaticField1RunNegativeTest: Pass # but error is not correct | 333 StaticField1RunNegativeTest: Pass # but error is not correct |
| 336 StaticField2RunNegativeTest: Pass # but error is not correct | 334 StaticField2RunNegativeTest: Pass # but error is not correct |
| 337 InstanceofTest: Timeout | 335 InstanceofTest: Timeout |
| 338 NumberSyntaxTest: Timeout | 336 NumberSyntaxTest: Timeout |
| 339 NativeNamedConstructors2FrogTest: Timeout # ReferenceError: A is not defined. | |
| 340 | 337 |
| 341 [ $arch == x64 ] | 338 [ $arch == x64 ] |
| 342 *: Skip | 339 *: Skip |
| 343 | 340 |
| 344 [ $arch == simarm ] | 341 [ $arch == simarm ] |
| 345 *: Skip | 342 *: Skip |
| 346 | 343 |
| 347 [ $arch == arm ] | 344 [ $arch == arm ] |
| 348 *: Skip | 345 *: Skip |
| OLD | NEW |