| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 # - should add a version of this with the --enable_type_checks flag | 204 # - should add a version of this with the --enable_type_checks flag |
| 205 # TypeVMTest - correctly skipped as this relies on detailed of TypeError | 205 # TypeVMTest - correctly skipped as this relies on detailed of TypeError |
| 206 # TypeDartcTest - should pass, need refactoring to get frog safe version | 206 # TypeDartcTest - should pass, need refactoring to get frog safe version |
| 207 | 207 |
| 208 BitOperationsTest: Fail # relies on big integers not available in JS | 208 BitOperationsTest: Fail # relies on big integers not available in JS |
| 209 CallThroughGetterTest: Fail | 209 CallThroughGetterTest: Fail |
| 210 CanonicalConstTest: Fail # type in const array allocation is erased | 210 CanonicalConstTest: Fail # type in const array allocation is erased |
| 211 CharEscapeTest: Fail | 211 CharEscapeTest: Fail |
| 212 ClassOverrideNegativeTest: Fail | 212 ClassOverrideNegativeTest: Fail |
| 213 ClosureSharedStateTest: Fail | 213 ClosureSharedStateTest: Fail |
| 214 ClosuresWithComplexParamsTest: Fail | |
| 215 ConstFactoryNegativeTest: Fail | 214 ConstFactoryNegativeTest: Fail |
| 216 ConstObjectsAreImmutableTest: Fail | 215 ConstObjectsAreImmutableTest: Fail |
| 217 CTConstTest: Fail # Not checking for generic type in const expression. | 216 CTConstTest: Fail # Not checking for generic type in const expression. |
| 218 DefaultFactoryLibraryTest: Fail # Issue 514 | 217 DefaultFactoryLibraryTest: Fail # Issue 514 |
| 219 DynamicTest: Fail | 218 DynamicTest: Fail |
| 220 ExampleConstructorTest: Fail | 219 ExampleConstructorTest: Fail |
| 221 Constructor2Test: Fail | 220 Constructor2Test: Fail |
| 222 Constructor3Test: Fail | 221 Constructor3Test: Fail |
| 223 Constructor5Test: Fail # Order of initializers. | 222 Constructor5Test: Fail # Order of initializers. |
| 224 Constructor6Test: Fail # Parse failure in initializers. | 223 Constructor6Test: Fail # Parse failure in initializers. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 249 GenericsTest: Fail | 248 GenericsTest: Fail |
| 250 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case | 249 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r
eally passing in the static case |
| 251 ImplicitScopeTest: Fail | 250 ImplicitScopeTest: Fail |
| 252 ImpliedInterfaceTest: Fail | 251 ImpliedInterfaceTest: Fail |
| 253 IncrOpTest: Fail | 252 IncrOpTest: Fail |
| 254 Instanceof2Test: Fail | 253 Instanceof2Test: Fail |
| 255 InstanceofTest: Fail | 254 InstanceofTest: Fail |
| 256 InterfaceFactory3NegativeTest: Fail | 255 InterfaceFactory3NegativeTest: Fail |
| 257 IsNotClass4NegativeTest: Fail | 256 IsNotClass4NegativeTest: Fail |
| 258 LabelTest: Fail | 257 LabelTest: Fail |
| 259 LibraryPrefixesTest: Fail | |
| 260 Library1NegativeTest: Fail # issue with test see #354 | 258 Library1NegativeTest: Fail # issue with test see #354 |
| 261 Library4NegativeTest: Fail # issue with test see #354 | 259 Library4NegativeTest: Fail # issue with test see #354 |
| 262 Library5NegativeTest: Fail # issue with test see #354 | 260 Library5NegativeTest: Fail # issue with test see #354 |
| 263 Library6NegativeTest: Fail # issue with test see #354 | 261 Library6NegativeTest: Fail # issue with test see #354 |
| 264 ListLiteral3Test: Fail | 262 ListLiteral3Test: Fail |
| 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 |
| 269 MathTest: Fail | 267 MathTest: Fail |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 StaticField2RunNegativeTest: Fail | 342 StaticField2RunNegativeTest: Fail |
| 345 | 343 |
| 346 [ $arch == x64 ] | 344 [ $arch == x64 ] |
| 347 *: Skip | 345 *: Skip |
| 348 | 346 |
| 349 [ $arch == simarm ] | 347 [ $arch == simarm ] |
| 350 *: Skip | 348 *: Skip |
| 351 | 349 |
| 352 [ $arch == arm ] | 350 [ $arch == arm ] |
| 353 *: Skip | 351 *: Skip |
| OLD | NEW |