| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 RichardsTest: Fail | 192 RichardsTest: Fail |
| 193 TypedMessageTest: Fail # Bug 5246195 | 193 TypedMessageTest: Fail # Bug 5246195 |
| 194 | 194 |
| 195 | 195 |
| 196 [ $component == frog ] | 196 [ $component == frog ] |
| 197 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 197 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 198 | 198 |
| 199 [ $component == frogsh || $component == frog || ($component == webdriver && ($b
rowser == chrome || $browser == ff)) || $component == frogium ] | 199 [ $component == frogsh || $component == frog || ($component == webdriver && ($b
rowser == chrome || $browser == ff)) || $component == frogium ] |
| 200 Factory3Test: Fail # Issue 417 | 200 Factory3Test: Fail # Issue 417 |
| 201 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 201 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 202 OptimizedSetterTest: Fail # Issue 863 | |
| 203 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 202 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 204 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 203 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 205 ImplementTypeParameterNegativeTest: Skip # Issue 887 | 204 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 206 FactoryImplementationTest: Fail # Issue 523 | 205 FactoryImplementationTest: Fail # Issue 523 |
| 207 PseudoKWTest: Fail # Issue 356 | 206 PseudoKWTest: Fail # Issue 356 |
| 208 NamingTest: Fail # Issue 356 | 207 NamingTest: Fail # Issue 356 |
| 209 | 208 |
| 210 # VM or DartC specific tests not to be run by Frog. See language.status | 209 # VM or DartC specific tests not to be run by Frog. See language.status |
| 211 *VMTest: Skip | 210 *VMTest: Skip |
| 212 *VMNegativeTest: Skip | 211 *VMNegativeTest: Skip |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 FunctionTypeParameter2Test: Fail | 247 FunctionTypeParameter2Test: Fail |
| 249 FunctionTypeParameterTest: Fail | 248 FunctionTypeParameterTest: Fail |
| 250 GenericDeepTest: Fail | 249 GenericDeepTest: Fail |
| 251 GenericInstanceofTest: Fail | 250 GenericInstanceofTest: Fail |
| 252 GenericSyntaxTest: Fail | 251 GenericSyntaxTest: Fail |
| 253 GenericTest: Fail | 252 GenericTest: Fail |
| 254 GenericsTest: Fail | 253 GenericsTest: Fail |
| 255 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case | 254 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case |
| 256 ImplicitScopeTest: Fail | 255 ImplicitScopeTest: Fail |
| 257 ImpliedInterfaceTest: Fail | 256 ImpliedInterfaceTest: Fail |
| 258 IncrOpTest: Fail | |
| 259 Instanceof2Test: Fail | 257 Instanceof2Test: Fail |
| 260 InterfaceFactory3NegativeTest: Fail | 258 InterfaceFactory3NegativeTest: Fail |
| 261 IsNotClass4NegativeTest: Fail | 259 IsNotClass4NegativeTest: Fail |
| 262 LabelTest: Fail | 260 LabelTest: Fail |
| 263 ListLiteral3Test: Fail # vm and frog throw different exceptions | 261 ListLiteral3Test: Fail # vm and frog throw different exceptions |
| 264 ListLiteral4Test: Fail # missing type checks on index operations | 262 ListLiteral4Test: Fail # missing type checks on index operations |
| 265 ListTest: Fail # array bound checks not implemented | 263 ListTest: Fail # array bound checks not implemented |
| 266 LocalFunction3Test: Fail | 264 LocalFunction3Test: Fail |
| 267 LocalFunctionTest: Fail | 265 LocalFunctionTest: Fail |
| 268 ManyGenericInstanceofTest: Fail | 266 ManyGenericInstanceofTest: Fail |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 # these tests are inconsistent in frogium and frogsh-node, investigate | 351 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 354 StaticField1RunNegativeTest: Pass # but error is not correct | 352 StaticField1RunNegativeTest: Pass # but error is not correct |
| 355 StaticField2RunNegativeTest: Pass # but error is not correct | 353 StaticField2RunNegativeTest: Pass # but error is not correct |
| 356 | 354 |
| 357 | 355 |
| 358 [ $arch == simarm ] | 356 [ $arch == simarm ] |
| 359 *: Skip | 357 *: Skip |
| 360 | 358 |
| 361 [ $arch == arm ] | 359 [ $arch == arm ] |
| 362 *: Skip | 360 *: Skip |
| OLD | NEW |