| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 [ ($component == vm || $component == dartium) && $checked ] | 97 [ ($component == vm || $component == dartium) && $checked ] |
| 98 | 98 |
| 99 DefaultFactory2Test/01: Fail # Issue 943 | 99 DefaultFactory2Test/01: Fail # Issue 943 |
| 100 WrongNumberTypeArgumentsTest: Fail # This test should be negative | 100 WrongNumberTypeArgumentsTest: Fail # This test should be negative |
| 101 | 101 |
| 102 [ $component == vm && $mode == debug ] | 102 [ $component == vm && $mode == debug ] |
| 103 GCTest: Skip # Takes too long. | 103 GCTest: Skip # Takes too long. |
| 104 | 104 |
| 105 [ $component == vm && $mode == release ] | 105 [ $component == vm && $mode == release ] |
| 106 | 106 |
| 107 # Problems specific to dartc optimized mode | |
| 108 [ ($component == dartc || $component == chromium) && $mode == release ] | |
| 109 | |
| 110 CTConst2Test: Fail # Codesite issue 124 | |
| 111 CallThroughNullGetterTest: Fail # Bug 5391976 | |
| 112 Label2NegativeTest: Crash # Bug 5318228 | |
| 113 MethodInvocationTest: Fail # Bug 5392266 | |
| 114 NullPointerExceptionTest: Fail # Bug 5391976 | |
| 115 Private3Test: Fail # Bug 5391976 | |
| 116 Switch3NegativeTest: Crash # Bug 5318228 | |
| 117 ToplevelCollision2Test/none: Fail # Issue 647 | |
| 118 | |
| 119 # Problems specific to dartc debug mode | |
| 120 [ ($component == dartc || $component == chromium) && $mode == debug ] | |
| 121 | |
| 122 | |
| 123 [ $component == dartc || $component == chromium ] | 107 [ $component == dartc || $component == chromium ] |
| 124 | 108 |
| 125 # Marked failed after code generation removed from dartc | 109 # Marked failed after code generation removed from dartc |
| 126 | 110 |
| 127 ApplicationNegativeTest: Fail # status change with --check-only | 111 ApplicationNegativeTest: Fail # status change with --check-only |
| 128 AssertKeywordNegativeTest: Fail # status change with --check-only | 112 AssertKeywordNegativeTest: Fail # status change with --check-only |
| 129 AssignInstanceMethodNegativeTest: Fail # status change with --check-only | 113 AssignInstanceMethodNegativeTest: Fail # status change with --check-only |
| 130 BitOperationsTest: Pass # status change with --check-only | 114 BitOperationsTest: Pass # status change with --check-only |
| 131 BodyLessConstructorWrongArgNegativeTest: Fail # status change with --check-on
ly | 115 BodyLessConstructorWrongArgNegativeTest: Fail # status change with --check-on
ly |
| 132 CallOperatorTest: Pass # status change with --check-only | 116 CallOperatorTest: Pass # status change with --check-only |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 [ $component == frog && $mode == debug ] | 527 [ $component == frog && $mode == debug ] |
| 544 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 528 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 545 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 529 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 546 | 530 |
| 547 [ $arch == simarm ] | 531 [ $arch == simarm ] |
| 548 *: Skip | 532 *: Skip |
| 549 | 533 |
| 550 [ $arch == arm ] | 534 [ $arch == arm ] |
| 551 *: Skip | 535 *: Skip |
| 552 | 536 |
| 553 [ $component == dartc && $mode == release ] | |
| 554 *: Skip | |
| OLD | NEW |