| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 GCTest: Skip # Takes too long. | 105 GCTest: Skip # Takes too long. |
| 106 | 106 |
| 107 [ $component == vm && $mode == release ] | 107 [ $component == vm && $mode == release ] |
| 108 | 108 |
| 109 [ $component == dartc || $component == chromium ] | 109 [ $component == dartc || $component == chromium ] |
| 110 AbstractSyntaxTest/01: Fail | 110 AbstractSyntaxTest/01: Fail |
| 111 ApplicationNegativeTest: Fail | 111 ApplicationNegativeTest: Fail |
| 112 AssertKeywordNegativeTest: Fail | 112 AssertKeywordNegativeTest: Fail |
| 113 AssertTest: Fail # Uses AssertError class. Bug 4385894. | 113 AssertTest: Fail # Uses AssertError class. Bug 4385894. |
| 114 AssignInstanceMethodNegativeTest: Fail | 114 AssignInstanceMethodNegativeTest: Fail |
| 115 BadNamedParametersTest: Fail # Issue 1941 |
| 116 BadNamedParameters2Test: Fail # Issue 1941 |
| 115 BodyLessConstructorWrongArgNegativeTest: Fail | 117 BodyLessConstructorWrongArgNegativeTest: Fail |
| 116 CallOperatorTest: Pass # Issue 1355 | 118 CallOperatorTest: Pass # Issue 1355 |
| 117 CharEscapeTest: Pass # Issue 1654 | 119 CharEscapeTest: Pass # Issue 1654 |
| 118 ClosureCallWrongArgumentCountNegativeTest: Fail | 120 ClosureCallWrongArgumentCountNegativeTest: Fail |
| 119 CompileTimeConstant3Test: Fail # Issue 1780 | 121 CompileTimeConstant3Test: Fail # Issue 1780 |
| 120 ConstConstructorSyntaxTest/05: Fail | 122 ConstConstructorSyntaxTest/05: Fail |
| 121 ConstCounterNegativeTest: Fail # issue 1655 | 123 ConstCounterNegativeTest: Fail # issue 1655 |
| 122 Constructor3NegativeTest: Fail | 124 Constructor3NegativeTest: Fail |
| 123 ConstructorCallWrongArgumentCountNegativeTest: Fail | 125 ConstructorCallWrongArgumentCountNegativeTest: Fail |
| 124 DefaultFactoryLibraryTest: Fail # Issue 514 | 126 DefaultFactoryLibraryTest: Fail # Issue 514 |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 [ $component == frog && $mode == debug ] | 463 [ $component == frog && $mode == debug ] |
| 462 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 464 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 463 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 465 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 464 | 466 |
| 465 [ $arch == simarm ] | 467 [ $arch == simarm ] |
| 466 *: Skip | 468 *: Skip |
| 467 | 469 |
| 468 [ $arch == arm ] | 470 [ $arch == arm ] |
| 469 *: Skip | 471 *: Skip |
| 470 | 472 |
| OLD | NEW |