| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 GenericTest: Fail | 231 GenericTest: Fail |
| 232 GenericsTest: Fail | 232 GenericsTest: Fail |
| 233 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case | 233 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case |
| 234 ImplicitScopeTest: Fail | 234 ImplicitScopeTest: Fail |
| 235 ImpliedInterfaceTest: Fail | 235 ImpliedInterfaceTest: Fail |
| 236 IncrOpTest: Fail | 236 IncrOpTest: Fail |
| 237 Instanceof2Test: Fail | 237 Instanceof2Test: Fail |
| 238 InterfaceFactory3NegativeTest: Fail | 238 InterfaceFactory3NegativeTest: Fail |
| 239 IsNotClass4NegativeTest: Fail | 239 IsNotClass4NegativeTest: Fail |
| 240 LabelTest: Fail | 240 LabelTest: Fail |
| 241 Library1NegativeTest: Fail | |
| 242 Library4NegativeTest: Fail | |
| 243 Library5NegativeTest: Fail | |
| 244 Library6NegativeTest: Fail | |
| 245 ListLiteral3Test: Fail # vm and frog throw different exceptions | 241 ListLiteral3Test: Fail # vm and frog throw different exceptions |
| 246 ListLiteral4Test: Fail # missing type checks on index operations | 242 ListLiteral4Test: Fail # missing type checks on index operations |
| 247 ListTest: Fail # array bound checks not implemented | 243 ListTest: Fail # array bound checks not implemented |
| 248 LocalFunction3Test: Fail | 244 LocalFunction3Test: Fail |
| 249 LocalFunctionTest: Fail | 245 LocalFunctionTest: Fail |
| 250 ManyGenericInstanceofTest: Fail | 246 ManyGenericInstanceofTest: Fail |
| 251 MapLiteral4Test: Fail # missing checks on map index operations | 247 MapLiteral4Test: Fail # missing checks on map index operations |
| 252 MathTest: Fail | 248 MathTest: Fail |
| 253 MethodOverrideTest: Fail # checking on precise type rules for methods | 249 MethodOverrideTest: Fail # checking on precise type rules for methods |
| 254 NamedParametersPassingFalsyTest: Fail | 250 NamedParametersPassingFalsyTest: Fail |
| 255 NamedParametersTypeTest: Fail | 251 NamedParametersTypeTest: Fail |
| 256 NamedParametersWithConversionsTest: Fail | 252 NamedParametersWithConversionsTest: Fail |
| 257 NonConstSuperNegativeTest: Fail | 253 NonConstSuperNegativeTest: Fail |
| 258 NonParameterizedFactoryTest: Fail | 254 NonParameterizedFactoryTest: Fail |
| 259 NonParameterizedFactory2Test: Fail | 255 NonParameterizedFactory2Test: Fail |
| 260 NullPointerExceptionTest: Fail | 256 NullPointerExceptionTest: Fail |
| 261 NullTest: Fail | 257 NullTest: Fail |
| 262 NullToStringTest: Fail | 258 NullToStringTest: Fail |
| 263 NumbersTest: Fail | 259 NumbersTest: Fail |
| 264 OverrideFieldTest/01: Fail | 260 OverrideFieldTest/01: Fail |
| 265 OverrideFieldTest/04: Fail | 261 OverrideFieldTest/04: Fail |
| 266 OverrideMethodWithFieldTest/01: Fail | 262 OverrideMethodWithFieldTest/01: Fail |
| 267 ParameterInitializer5NegativeTest: Fail # Issue 581 | 263 ParameterInitializer5NegativeTest: Fail # Issue 581 |
| 268 Prefix3NegativeTest: Fail | |
| 269 Prefix7NegativeTest: Fail | |
| 270 Prefix8NegativeTest: Fail | 264 Prefix8NegativeTest: Fail |
| 271 Prefix9NegativeTest: Fail | 265 Prefix9NegativeTest: Fail |
| 272 Prefix11NegativeTest: Fail | 266 Prefix11NegativeTest: Fail |
| 273 Prefix16NegativeTest: Fail | 267 Prefix16NegativeTest: Fail |
| 274 Prefix20NegativeTest: Fail | 268 Prefix20NegativeTest: Fail |
| 275 Prefix22NegativeTest: Fail | 269 Prefix22NegativeTest: Fail |
| 276 Prefix23NegativeTest: Fail | 270 Prefix23NegativeTest: Fail |
| 277 PrivateMemberTest: Fail | 271 PrivateMemberTest: Fail |
| 278 PrivateMember2NegativeTest: Fail | 272 PrivateMember2NegativeTest: Fail |
| 279 PrivateMember3NegativeTest: Fail | 273 PrivateMember3NegativeTest: Fail |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 | 332 |
| 339 | 333 |
| 340 [ $arch == x64 ] | 334 [ $arch == x64 ] |
| 341 *: Skip | 335 *: Skip |
| 342 | 336 |
| 343 [ $arch == simarm ] | 337 [ $arch == simarm ] |
| 344 *: Skip | 338 *: Skip |
| 345 | 339 |
| 346 [ $arch == arm ] | 340 [ $arch == arm ] |
| 347 *: Skip | 341 *: Skip |
| OLD | NEW |