| 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 29 matching lines...) Expand all Loading... |
| 40 ManyEchoServerTest: Skip # Bug 5103754 | 40 ManyEchoServerTest: Skip # Bug 5103754 |
| 41 CanonicalConstTest: Fail # Bug 5271563 | 41 CanonicalConstTest: Fail # Bug 5271563 |
| 42 | 42 |
| 43 ConstructorReturnNegativeTest: Fail # Issue 224 | 43 ConstructorReturnNegativeTest: Fail # Issue 224 |
| 44 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | 44 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 |
| 45 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | 45 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 |
| 46 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 | 46 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 |
| 47 | 47 |
| 48 NonParameterizedFactory2Test: Fail # Bug 5257789 | 48 NonParameterizedFactory2Test: Fail # Bug 5257789 |
| 49 | 49 |
| 50 Prefix18NegativeTest_1: Fail # Issue 307 |
| 51 Prefix18NegativeTest_2: Fail # Issue 307 |
| 52 Prefix18NegativeTest_3: Fail # Issue 307 |
| 53 |
| 50 # DartC specific tests that should not be run by the VM. | 54 # DartC specific tests that should not be run by the VM. |
| 51 *DartcTest: Skip | 55 *DartcTest: Skip |
| 52 | 56 |
| 53 [ $component == vm && $mode == debug ] | 57 [ $component == vm && $mode == debug ] |
| 54 NonParameterizedFactoryTest: Crash # Issue 226 | 58 NonParameterizedFactoryTest: Crash # Issue 226 |
| 55 | 59 |
| 56 # Problems specific to dartc optimized mode | 60 # Problems specific to dartc optimized mode |
| 57 [ ($component == dartc || $component == chromium) && $mode == release ] | 61 [ ($component == dartc || $component == chromium) && $mode == release ] |
| 58 MethodInvocationTest: Fail # Bug 5392266 | 62 MethodInvocationTest: Fail # Bug 5392266 |
| 59 Label2NegativeTest: Crash # Bug 5318228 | 63 Label2NegativeTest: Crash # Bug 5318228 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 TypedMessageTest: Fail # Bug 5246195 | 178 TypedMessageTest: Fail # Bug 5246195 |
| 175 | 179 |
| 176 [ $arch == x64 ] | 180 [ $arch == x64 ] |
| 177 *: Skip | 181 *: Skip |
| 178 | 182 |
| 179 [ $arch == simarm ] | 183 [ $arch == simarm ] |
| 180 *: Skip | 184 *: Skip |
| 181 | 185 |
| 182 [ $arch == arm ] | 186 [ $arch == arm ] |
| 183 *: Skip | 187 *: Skip |
| OLD | NEW |