| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 FactoryImplementationTest: Fail # Issue 523 | 256 FactoryImplementationTest: Fail # Issue 523 |
| 257 PseudoKWTest: Fail # Issue 356 | 257 PseudoKWTest: Fail # Issue 356 |
| 258 NamingTest: Fail # Issue 356 | 258 NamingTest: Fail # Issue 356 |
| 259 DuplicateImplementsTest: Skip # Issue 976 | 259 DuplicateImplementsTest: Skip # Issue 976 |
| 260 ThirdTest: Fail # Issue 1511 | 260 ThirdTest: Fail # Issue 1511 |
| 261 TryCatchSyntaxTest/08: Fail | 261 TryCatchSyntaxTest/08: Fail |
| 262 TryCatchSyntaxTest/09: Fail | 262 TryCatchSyntaxTest/09: Fail |
| 263 CondExprTest: Fail | 263 CondExprTest: Fail |
| 264 SuperFieldAccessTest: Fail # Issue 1695 | 264 SuperFieldAccessTest: Fail # Issue 1695 |
| 265 CompileTimeConstant6Test: Fail | 265 CompileTimeConstant6Test: Fail |
| 266 CompileTimeConstant8Test: Fail |
| 266 | 267 |
| 267 SavannahTest: Skip # TODO(jimhug): Seems flaky on some configs - investigate. | 268 SavannahTest: Skip # TODO(jimhug): Seems flaky on some configs - investigate. |
| 268 | 269 |
| 269 # VM or DartC specific tests not to be run by Frog. See language.status | 270 # VM or DartC specific tests not to be run by Frog. See language.status |
| 270 *VMTest: Skip | 271 *VMTest: Skip |
| 271 *VMNegativeTest: Skip | 272 *VMNegativeTest: Skip |
| 272 *DartcTest: Skip | 273 *DartcTest: Skip |
| 273 *DartcNegativeTest: Skip | 274 *DartcNegativeTest: Skip |
| 274 # Currently, these patterns skip three tests: | 275 # Currently, these patterns skip three tests: |
| 275 # MathVMTest - correctly skipped as this relies on VM guarantees | 276 # MathVMTest - correctly skipped as this relies on VM guarantees |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 [ $component == frog && $mode == debug ] | 454 [ $component == frog && $mode == debug ] |
| 454 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 455 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 455 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 456 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 456 | 457 |
| 457 [ $arch == simarm ] | 458 [ $arch == simarm ] |
| 458 *: Skip | 459 *: Skip |
| 459 | 460 |
| 460 [ $arch == arm ] | 461 [ $arch == arm ] |
| 461 *: Skip | 462 *: Skip |
| 462 | 463 |
| OLD | NEW |