| 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 an architecture other than the one you are working on. | 10 # failed on an architecture other than the one you are working on. |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ManyEchoServerTest: Skip # Bug 5103754 | 42 ManyEchoServerTest: Skip # Bug 5103754 |
| 43 | 43 |
| 44 ConstructorReturnNegativeTest: Fail # Issue 224 | 44 ConstructorReturnNegativeTest: Fail # Issue 224 |
| 45 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | 45 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 |
| 46 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | 46 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 |
| 47 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 | 47 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 |
| 48 | 48 |
| 49 NonParameterizedFactory2Test: Fail # Bug 5257789 | 49 NonParameterizedFactory2Test: Fail # Bug 5257789 |
| 50 | 50 |
| 51 WrongNumberTypeArgumentsTest: Fail # Bug 5532690 | 51 WrongNumberTypeArgumentsTest: Fail # Bug 5532690 |
| 52 Prefix18NegativeTest_1: Fail # Issue 307 | 52 Prefix18NegativeTest: Fail # Issue 307 |
| 53 Prefix18NegativeTest_2: Fail # Issue 307 | 53 Prefix20NegativeTest: Fail # Issue 307 |
| 54 Prefix18NegativeTest_3: Fail # Issue 307 | |
| 55 | 54 |
| 56 # DartC specific tests that should not be run by the VM. | 55 # DartC specific tests that should not be run by the VM. |
| 57 *DartcTest: Skip | 56 *DartcTest: Skip |
| 58 | 57 |
| 59 [ $component == vm && $mode == debug ] | 58 [ $component == vm && $mode == debug ] |
| 60 NonParameterizedFactoryTest: Crash # Issue 226 | 59 NonParameterizedFactoryTest: Crash # Issue 226 |
| 61 | 60 |
| 62 # Problems specific to dartc optimized mode | 61 # Problems specific to dartc optimized mode |
| 63 [ ($component == dartc || $component == chromium) && $mode == release ] | 62 [ ($component == dartc || $component == chromium) && $mode == release ] |
| 64 MethodInvocationTest: Fail # Bug 5392266 | 63 MethodInvocationTest: Fail # Bug 5392266 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 TypedMessageTest: Fail # Bug 5246195 | 184 TypedMessageTest: Fail # Bug 5246195 |
| 186 | 185 |
| 187 [ $arch == x64 ] | 186 [ $arch == x64 ] |
| 188 *: Skip | 187 *: Skip |
| 189 | 188 |
| 190 [ $arch == simarm ] | 189 [ $arch == simarm ] |
| 191 *: Skip | 190 *: Skip |
| 192 | 191 |
| 193 [ $arch == arm ] | 192 [ $arch == arm ] |
| 194 *: Skip | 193 *: Skip |
| OLD | NEW |