| 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 an architecture other than the one you are working on. | 10 # failed on an architecture other than the one you are working on. |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 Switch7NegativeTest: Fail # Bug 4208467. | 116 Switch7NegativeTest: Fail # Bug 4208467. |
| 117 StackOverflowTest: Fail # Bug 4591172. | 117 StackOverflowTest: Fail # Bug 4591172. |
| 118 ScopeNegativeTest: Fail # Bug 4207538. | 118 ScopeNegativeTest: Fail # Bug 4207538. |
| 119 PseudoKWNegativeTest: Fail # Bug 4979760. | 119 PseudoKWNegativeTest: Fail # Bug 4979760. |
| 120 OverriddenNoSuchMethodTest: Fail # Bug 4202974. | 120 OverriddenNoSuchMethodTest: Fail # Bug 4202974. |
| 121 ManyOverriddenNoSuchMethodTest: Fail # Bug 4202974. | 121 ManyOverriddenNoSuchMethodTest: Fail # Bug 4202974. |
| 122 NoSuchMethodTest: Fail # Bug 4202974. | 122 NoSuchMethodTest: Fail # Bug 4202974. |
| 123 NumbersTest: Fail # Fails because numbers are mapped to doubles. | 123 NumbersTest: Fail # Fails because numbers are mapped to doubles. |
| 124 LocalFunctionTest: Fail # Bug in test. Bug 4202989 (shadowing). | 124 LocalFunctionTest: Fail # Bug in test. Bug 4202989 (shadowing). |
| 125 LocalFunction3Test: Fail # Bug 4202974. | 125 LocalFunction3Test: Fail # Bug 4202974. |
| 126 MethodOverrideTest: Crash # Bug 5516001. |
| 126 | 127 |
| 127 FieldNegativeTest: Fail # Bug 4207626. | 128 FieldNegativeTest: Fail # Bug 4207626. |
| 128 FunctionTypeAliasNegativeTest: Fail # Bug 5231617. | 129 FunctionTypeAliasNegativeTest: Fail # Bug 5231617. |
| 129 ExampleConstructorTest: Fail # Bug 4205742. | 130 ExampleConstructorTest: Fail # Bug 4205742. |
| 130 CTConstTest: Fail # Bug 4510015. | 131 CTConstTest: Fail # Bug 4510015. |
| 131 Constructor2NegativeTest: Fail # Bug 4208594. | 132 Constructor2NegativeTest: Fail # Bug 4208594. |
| 132 ClassOverrideNegativeTest: Fail # Bug 4205768. | 133 ClassOverrideNegativeTest: Fail # Bug 4205768. |
| 133 BitOperationsTest: Fail # Uses bignums. | 134 BitOperationsTest: Fail # Uses bignums. |
| 134 ListLiteral3Test: Fail # Bug 4510015. | 135 ListLiteral3Test: Fail # Bug 4510015. |
| 135 ListTest: Fail # Bug 5146975. | 136 ListTest: Fail # Bug 5146975. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 TypedMessageTest: Fail # Bug 5246195 | 215 TypedMessageTest: Fail # Bug 5246195 |
| 215 | 216 |
| 216 [ $arch == x64 ] | 217 [ $arch == x64 ] |
| 217 *: Skip | 218 *: Skip |
| 218 | 219 |
| 219 [ $arch == simarm ] | 220 [ $arch == simarm ] |
| 220 *: Skip | 221 *: Skip |
| 221 | 222 |
| 222 [ $arch == arm ] | 223 [ $arch == arm ] |
| 223 *: Skip | 224 *: Skip |
| OLD | NEW |