| OLD | NEW |
| 1 # Copyright (c) 2011, 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. |
| 11 # | 11 # |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 GenericTest: Fail | 233 GenericTest: Fail |
| 234 GenericsTest: Fail | 234 GenericsTest: Fail |
| 235 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case | 235 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case |
| 236 ImplicitScopeTest: Fail | 236 ImplicitScopeTest: Fail |
| 237 ImpliedInterfaceTest: Fail | 237 ImpliedInterfaceTest: Fail |
| 238 IncrOpTest: Fail | 238 IncrOpTest: Fail |
| 239 Instanceof2Test: Fail | 239 Instanceof2Test: Fail |
| 240 InterfaceFactory3NegativeTest: Fail | 240 InterfaceFactory3NegativeTest: Fail |
| 241 IsNotClass4NegativeTest: Fail | 241 IsNotClass4NegativeTest: Fail |
| 242 LabelTest: Fail | 242 LabelTest: Fail |
| 243 Library1NegativeTest: Fail # issue with test see #354 | 243 Library1NegativeTest: Fail |
| 244 Library4NegativeTest: Fail # issue with test see #354 | 244 Library4NegativeTest: Fail |
| 245 Library5NegativeTest: Fail # issue with test see #354 | 245 Library5NegativeTest: Fail |
| 246 Library6NegativeTest: Fail # issue with test see #354 | 246 Library6NegativeTest: Fail |
| 247 ListLiteral3Test: Fail # vm and frog throw different exceptions | 247 ListLiteral3Test: Fail # vm and frog throw different exceptions |
| 248 ListLiteral4Test: Fail # missing type checks on index operations | 248 ListLiteral4Test: Fail # missing type checks on index operations |
| 249 ListTest: Fail # array bound checks not implemented | 249 ListTest: Fail # array bound checks not implemented |
| 250 LocalFunction3Test: Fail | 250 LocalFunction3Test: Fail |
| 251 LocalFunctionTest: Fail | 251 LocalFunctionTest: Fail |
| 252 ManyGenericInstanceofTest: Fail | 252 ManyGenericInstanceofTest: Fail |
| 253 MapLiteral4Test: Fail # missing checks on map index operations | 253 MapLiteral4Test: Fail # missing checks on map index operations |
| 254 MathTest: Fail | 254 MathTest: Fail |
| 255 MethodOverrideTest: Fail # checking on precise type rules for methods | 255 MethodOverrideTest: Fail # checking on precise type rules for methods |
| 256 NamedParametersPassingFalsyTest: Fail | 256 NamedParametersPassingFalsyTest: Fail |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 | 332 |
| 333 | 333 |
| 334 [ $arch == x64 ] | 334 [ $arch == x64 ] |
| 335 *: Skip | 335 *: Skip |
| 336 | 336 |
| 337 [ $arch == simarm ] | 337 [ $arch == simarm ] |
| 338 *: Skip | 338 *: Skip |
| 339 | 339 |
| 340 [ $arch == arm ] | 340 [ $arch == arm ] |
| 341 *: Skip | 341 *: Skip |
| OLD | NEW |