| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 MathTest: FAIL # Bug 5165080 | 83 MathTest: FAIL # Bug 5165080 |
| 84 StringConcatTest: FAIL # Bug 5196164 | 84 StringConcatTest: FAIL # Bug 5196164 |
| 85 NamedParametersTypeTest: Fail # Implementation in progress. | 85 NamedParametersTypeTest: Fail # Implementation in progress. |
| 86 NamedParametersWithConversionsTest: Fail # Implementation in progress. | 86 NamedParametersWithConversionsTest: Fail # Implementation in progress. |
| 87 NamedParametersNegativeTest: Fail # Implementation in progress. | 87 NamedParametersNegativeTest: Fail # Implementation in progress. |
| 88 NamedParameters2NegativeTest: Fail # Implementation in progress. | 88 NamedParameters2NegativeTest: Fail # Implementation in progress. |
| 89 NamedParameters3NegativeTest: Fail # Implementation in progress. | 89 NamedParameters3NegativeTest: Fail # Implementation in progress. |
| 90 NamedParameters4NegativeTest: Fail # Implementation in progress. | 90 NamedParameters4NegativeTest: Fail # Implementation in progress. |
| 91 NamedParameters6NegativeTest: Crash # Implementation in progress. | 91 NamedParameters6NegativeTest: Crash # Implementation in progress. |
| 92 NamedParametersNamedCountTest: Fail # Bug 5447476 | |
| 93 NamedParametersWithObjectPropertyNamesTest: Fail # Bug 5447476 | |
| 94 InstFieldInitializerTest: Fail # Cannot deal with static final values in c
onst expression. | 92 InstFieldInitializerTest: Fail # Cannot deal with static final values in c
onst expression. |
| 95 RegExp3Test: Fail # 5299683 | 93 RegExp3Test: Fail # 5299683 |
| 96 InterfaceFactory3NegativeTest: Fail # Bug 5387405 | 94 InterfaceFactory3NegativeTest: Fail # Bug 5387405 |
| 97 GenericParameterizedExtendsTest: Skip # Bug 5392297 | 95 GenericParameterizedExtendsTest: Skip # Bug 5392297 |
| 98 ConstObjectsAreImmutableTest: Fail # Bug 5202940 | 96 ConstObjectsAreImmutableTest: Fail # Bug 5202940 |
| 99 SuperNegativeTest: Fail # Now that super calls are automatically injected this t
est doesn't make sense | 97 SuperNegativeTest: Fail # Now that super calls are automatically injected this t
est doesn't make sense |
| 100 NullToStringTest: Fail # Bug 5421978 | 98 NullToStringTest: Fail # Bug 5421978 |
| 101 FunctionTypeAliasTest: Crash # Bug 4519208. | 99 FunctionTypeAliasTest: Crash # Bug 4519208. |
| 102 | 100 |
| 103 # Other bugs (or unimplemented features) in dartc. | 101 # Other bugs (or unimplemented features) in dartc. |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 TypedMessageTest: Fail # Bug 5246195 | 181 TypedMessageTest: Fail # Bug 5246195 |
| 184 | 182 |
| 185 [ $arch == x64 ] | 183 [ $arch == x64 ] |
| 186 *: Skip | 184 *: Skip |
| 187 | 185 |
| 188 [ $arch == simarm ] | 186 [ $arch == simarm ] |
| 189 *: Skip | 187 *: Skip |
| 190 | 188 |
| 191 [ $arch == arm ] | 189 [ $arch == arm ] |
| 192 *: Skip | 190 *: Skip |
| OLD | NEW |