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