| 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 StackOverflowTest: Fail # Bug 4591172. | 116 StackOverflowTest: Fail # Bug 4591172. |
| 117 ScopeNegativeTest: Fail # Bug 4207538. | 117 ScopeNegativeTest: Fail # Bug 4207538. |
| 118 PseudoKWNegativeTest: Fail # Bug 4979760. | 118 PseudoKWNegativeTest: Fail # Bug 4979760. |
| 119 OverriddenNoSuchMethodTest: Fail # Bug 4202974. | 119 OverriddenNoSuchMethodTest: Fail # Bug 4202974. |
| 120 ManyOverriddenNoSuchMethodTest: Fail # Bug 4202974. | 120 ManyOverriddenNoSuchMethodTest: Fail # Bug 4202974. |
| 121 NoSuchMethodTest: Fail # Bug 4202974. | 121 NoSuchMethodTest: Fail # Bug 4202974. |
| 122 NumbersTest: Fail # Fails because numbers are mapped to doubles. | 122 NumbersTest: Fail # Fails because numbers are mapped to doubles. |
| 123 LocalFunctionTest: Fail # Bug in test. Bug 4202989 (shadowing). | 123 LocalFunctionTest: Fail # Bug in test. Bug 4202989 (shadowing). |
| 124 LocalFunction3Test: Fail # Bug 4202974. | 124 LocalFunction3Test: Fail # Bug 4202974. |
| 125 MethodOverrideTest: Crash # Bug 5516001. | 125 MethodOverrideTest: Crash # Bug 5516001. |
| 126 DynamicTest: Fail # Bug 5527899. |
| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 TypedMessageTest: Fail # Bug 5246195 | 186 TypedMessageTest: Fail # Bug 5246195 |
| 186 | 187 |
| 187 [ $arch == x64 ] | 188 [ $arch == x64 ] |
| 188 *: Skip | 189 *: Skip |
| 189 | 190 |
| 190 [ $arch == simarm ] | 191 [ $arch == simarm ] |
| 191 *: Skip | 192 *: Skip |
| 192 | 193 |
| 193 [ $arch == arm ] | 194 [ $arch == arm ] |
| 194 *: Skip | 195 *: Skip |
| OLD | NEW |