| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 NamedParameters3NegativeTest: Fail # Implementation in progress. | 99 NamedParameters3NegativeTest: Fail # Implementation in progress. |
| 100 NamedParameters4NegativeTest: Fail # Implementation in progress. | 100 NamedParameters4NegativeTest: Fail # Implementation in progress. |
| 101 NamedParameters6NegativeTest: Crash # Implementation in progress. | 101 NamedParameters6NegativeTest: Crash # Implementation in progress. |
| 102 RegExp3Test: Fail # 5299683 | 102 RegExp3Test: Fail # 5299683 |
| 103 InterfaceFactory3NegativeTest: Fail # Bug 5387405 | 103 InterfaceFactory3NegativeTest: Fail # Bug 5387405 |
| 104 GenericParameterizedExtendsTest: Skip # Bug 5392297 | 104 GenericParameterizedExtendsTest: Skip # Bug 5392297 |
| 105 ConstObjectsAreImmutableTest: Fail # Bug 5202940 | 105 ConstObjectsAreImmutableTest: Fail # Bug 5202940 |
| 106 SuperNegativeTest: Fail # Now that super calls are automatically injected this t
est doesn't make sense | 106 SuperNegativeTest: Fail # Now that super calls are automatically injected this t
est doesn't make sense |
| 107 NullToStringTest: Fail # Bug 5421978 | 107 NullToStringTest: Fail # Bug 5421978 |
| 108 FunctionTypeAliasTest: Crash # Bug 4519208. | 108 FunctionTypeAliasTest: Crash # Bug 4519208. |
| 109 WrongNumberTypeArgumentsNegativeTest: Fail # Bug 235. |
| 109 | 110 |
| 110 # Other bugs (or unimplemented features) in dartc. | 111 # Other bugs (or unimplemented features) in dartc. |
| 111 SuperOperatorTest: Fail # Bug 4995463. | 112 SuperOperatorTest: Fail # Bug 4995463. |
| 112 GenericTest: Fail # Bug 5393302 (missing call to super constructor) | 113 GenericTest: Fail # Bug 5393302 (missing call to super constructor) |
| 113 Throw7NegativeTest: Fail # Bug 4208459. | 114 Throw7NegativeTest: Fail # Bug 4208459. |
| 114 SwitchLabelTest: Fail # Bug 4208467. | 115 SwitchLabelTest: Fail # Bug 4208467. |
| 115 Switch7NegativeTest: Fail # Bug 4208467. | 116 Switch7NegativeTest: Fail # Bug 4208467. |
| 116 StackOverflowTest: Fail # Bug 4591172. | 117 StackOverflowTest: Fail # Bug 4591172. |
| 117 ScopeNegativeTest: Fail # Bug 4207538. | 118 ScopeNegativeTest: Fail # Bug 4207538. |
| 118 PseudoKWNegativeTest: Fail # Bug 4979760. | 119 PseudoKWNegativeTest: Fail # Bug 4979760. |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 TypedMessageTest: Fail # Bug 5246195 | 214 TypedMessageTest: Fail # Bug 5246195 |
| 214 | 215 |
| 215 [ $arch == x64 ] | 216 [ $arch == x64 ] |
| 216 *: Skip | 217 *: Skip |
| 217 | 218 |
| 218 [ $arch == simarm ] | 219 [ $arch == simarm ] |
| 219 *: Skip | 220 *: Skip |
| 220 | 221 |
| 221 [ $arch == arm ] | 222 [ $arch == arm ] |
| 222 *: Skip | 223 *: Skip |
| OLD | NEW |