| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 InterfaceFactory3NegativeTest: Fail # Bug 5387405 | 86 InterfaceFactory3NegativeTest: Fail # Bug 5387405 |
| 87 GenericParameterizedExtendsTest: Skip # Bug 5392297 | 87 GenericParameterizedExtendsTest: Skip # Bug 5392297 |
| 88 ConstObjectsAreImmutableTest: Fail # Bug 5202940 | 88 ConstObjectsAreImmutableTest: Fail # Bug 5202940 |
| 89 SuperNegativeTest: Fail # Now that super calls are automatically injected this t
est doesn't make sense | 89 SuperNegativeTest: Fail # Now that super calls are automatically injected this t
est doesn't make sense |
| 90 NullToStringTest: Fail # Bug 5421978 | 90 NullToStringTest: Fail # Bug 5421978 |
| 91 FunctionTypeAliasTest: Crash # Bug 4519208. | 91 FunctionTypeAliasTest: Crash # Bug 4519208. |
| 92 | 92 |
| 93 # Other bugs (or unimplemented features) in dartc. | 93 # Other bugs (or unimplemented features) in dartc. |
| 94 SuperOperatorTest: Fail # Bug 4995463. | 94 SuperOperatorTest: Fail # Bug 4995463. |
| 95 GenericTest: Fail # Bug 5393302 (missing call to super constructor) | 95 GenericTest: Fail # Bug 5393302 (missing call to super constructor) |
| 96 Throw7NegativeTest: Fail # Bug 4208459. | 96 TryCatch6NegativeTest: Crash # Bug 5450070 |
| 97 Throw3Test: Fail # Bug 4205624. | 97 Throw7NegativeTest: Crash # Bug 4208459. |
| 98 SwitchLabelTest: Fail # Bug 4208467. | 98 SwitchLabelTest: Fail # Bug 4208467. |
| 99 Switch7NegativeTest: Fail # Bug 4208467. | 99 Switch7NegativeTest: Fail # Bug 4208467. |
| 100 StackOverflowTest: Fail # Bug 4591172. | 100 StackOverflowTest: Fail # Bug 4591172. |
| 101 ScopeNegativeTest: Fail # Bug 4207538. | 101 ScopeNegativeTest: Fail # Bug 4207538. |
| 102 PseudoKWNegativeTest: Fail # Bug 4979760. | 102 PseudoKWNegativeTest: Fail # Bug 4979760. |
| 103 OverriddenNoSuchMethodTest: Fail # Bug 4202974. | 103 OverriddenNoSuchMethodTest: Fail # Bug 4202974. |
| 104 ManyOverriddenNoSuchMethodTest: Fail # Bug 4202974. | 104 ManyOverriddenNoSuchMethodTest: Fail # Bug 4202974. |
| 105 NoSuchMethodTest: Fail # Bug 4202974. | 105 NoSuchMethodTest: Fail # Bug 4202974. |
| 106 NumbersTest: Fail # Fails because numbers are mapped to doubles. | 106 NumbersTest: Fail # Fails because numbers are mapped to doubles. |
| 107 LocalFunctionTest: Fail # Bug in test. Bug 4202989 (shadowing). | 107 LocalFunctionTest: Fail # Bug in test. Bug 4202989 (shadowing). |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 TypedMessageTest: Fail # Bug 5246195 | 174 TypedMessageTest: Fail # Bug 5246195 |
| 175 | 175 |
| 176 [ $arch == x64 ] | 176 [ $arch == x64 ] |
| 177 *: Skip | 177 *: Skip |
| 178 | 178 |
| 179 [ $arch == simarm ] | 179 [ $arch == simarm ] |
| 180 *: Skip | 180 *: Skip |
| 181 | 181 |
| 182 [ $arch == arm ] | 182 [ $arch == arm ] |
| 183 *: Skip | 183 *: Skip |
| OLD | NEW |