| 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 architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 CTConst3Test: Fail # Codesite Issue 120 | 90 CTConst3Test: Fail # Codesite Issue 120 |
| 91 FactoryNegativeTest: Fail # Issue 417 | 91 FactoryNegativeTest: Fail # Issue 417 |
| 92 | 92 |
| 93 | 93 |
| 94 StringConcatTest: FAIL # Bug 5196164 | 94 StringConcatTest: FAIL # Bug 5196164 |
| 95 NamedParametersTypeTest: Fail # Implementation in progress. | 95 NamedParametersTypeTest: Fail # Implementation in progress. |
| 96 NamedParametersNegativeTest: Fail # Implementation in progress. | 96 NamedParametersNegativeTest: Fail # Implementation in progress. |
| 97 NamedParameters2NegativeTest: Fail # Implementation in progress. | 97 NamedParameters2NegativeTest: Fail # Implementation in progress. |
| 98 NamedParameters3NegativeTest: Fail # Implementation in progress. | 98 NamedParameters3NegativeTest: Fail # Implementation in progress. |
| 99 NamedParameters4NegativeTest: Fail # Implementation in progress. | 99 NamedParameters4NegativeTest: Fail # Implementation in progress. |
| 100 NamedParameters6NegativeTest: Crash # Implementation in progress. | |
| 101 RegExp3Test: Fail # 5299683 | 100 RegExp3Test: Fail # 5299683 |
| 102 InterfaceFactory3NegativeTest: Fail # Bug 5387405 | 101 InterfaceFactory3NegativeTest: Fail # Bug 5387405 |
| 103 GenericParameterizedExtendsTest: Skip # Bug 5392297 | 102 GenericParameterizedExtendsTest: Skip # Bug 5392297 |
| 104 ConstObjectsAreImmutableTest: Fail # Bug 5202940 | 103 ConstObjectsAreImmutableTest: Fail # Bug 5202940 |
| 105 NullToStringTest: Fail # Bug 5421978 | 104 NullToStringTest: Fail # Bug 5421978 |
| 106 FunctionTypeAliasTest: Crash # Bug 4519208. | 105 FunctionTypeAliasTest: Crash # Bug 4519208. |
| 107 | 106 |
| 108 # Other bugs (or unimplemented features) in dartc. | 107 # Other bugs (or unimplemented features) in dartc. |
| 109 For2Test: Fail # Bug 4995208. | 108 For2Test: Fail # Bug 4995208. |
| 110 SuperOperatorTest: Fail # Bug 4995463. | 109 SuperOperatorTest: Fail # Bug 4995463. |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 StaticField2RunNegativeTest: Fail | 350 StaticField2RunNegativeTest: Fail |
| 352 | 351 |
| 353 [ $arch == x64 ] | 352 [ $arch == x64 ] |
| 354 *: Skip | 353 *: Skip |
| 355 | 354 |
| 356 [ $arch == simarm ] | 355 [ $arch == simarm ] |
| 357 *: Skip | 356 *: Skip |
| 358 | 357 |
| 359 [ $arch == arm ] | 358 [ $arch == arm ] |
| 360 *: Skip | 359 *: Skip |
| OLD | NEW |