| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 ImplementTypeParameterNegativeTest: Skip # Issue 887 | 260 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 261 FactoryImplementationTest: Fail # Issue 523 | 261 FactoryImplementationTest: Fail # Issue 523 |
| 262 PseudoKWTest: Fail # Issue 356 | 262 PseudoKWTest: Fail # Issue 356 |
| 263 NamingTest: Fail # Issue 356 | 263 NamingTest: Fail # Issue 356 |
| 264 DuplicateImplementsTest: Skip # Issue 976 | 264 DuplicateImplementsTest: Skip # Issue 976 |
| 265 ThirdTest: Fail # Issue 1511 | 265 ThirdTest: Fail # Issue 1511 |
| 266 TryCatchSyntaxTest/08: Fail | 266 TryCatchSyntaxTest/08: Fail |
| 267 TryCatchSyntaxTest/09: Fail | 267 TryCatchSyntaxTest/09: Fail |
| 268 CondExprTest: Fail | 268 CondExprTest: Fail |
| 269 SuperFieldAccessTest: Fail # Issue 1695 | 269 SuperFieldAccessTest: Fail # Issue 1695 |
| 270 CompileTimeConstant6Test: Fail |
| 270 | 271 |
| 271 SavannahTest: Skip # TODO(jimhug): Seems flaky on some configs - investigate. | 272 SavannahTest: Skip # TODO(jimhug): Seems flaky on some configs - investigate. |
| 272 | 273 |
| 273 # VM or DartC specific tests not to be run by Frog. See language.status | 274 # VM or DartC specific tests not to be run by Frog. See language.status |
| 274 *VMTest: Skip | 275 *VMTest: Skip |
| 275 *VMNegativeTest: Skip | 276 *VMNegativeTest: Skip |
| 276 *DartcTest: Skip | 277 *DartcTest: Skip |
| 277 *DartcNegativeTest: Skip | 278 *DartcNegativeTest: Skip |
| 278 # Currently, these patterns skip three tests: | 279 # Currently, these patterns skip three tests: |
| 279 # MathVMTest - correctly skipped as this relies on VM guarantees | 280 # MathVMTest - correctly skipped as this relies on VM guarantees |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 [ $component == frog && $mode == debug ] | 465 [ $component == frog && $mode == debug ] |
| 465 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 466 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 466 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 467 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 467 | 468 |
| 468 [ $arch == simarm ] | 469 [ $arch == simarm ] |
| 469 *: Skip | 470 *: Skip |
| 470 | 471 |
| 471 [ $arch == arm ] | 472 [ $arch == arm ] |
| 472 *: Skip | 473 *: Skip |
| 473 | 474 |
| OLD | NEW |