Chromium Code Reviews| 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: Fail # Issue 307 | |
|
mmendez
2011/11/02 13:45:58
Nit: CC Ivan from the VM team as an FYI.
codefu
2011/11/02 14:32:57
I filed a bug, 307, and assigned it to the VM area
| |
| 51 | |
| 50 # DartC specific tests that should not be run by the VM. | 52 # DartC specific tests that should not be run by the VM. |
| 51 *DartcTest: Skip | 53 *DartcTest: Skip |
| 52 | 54 |
| 53 [ $component == vm && $mode == debug ] | 55 [ $component == vm && $mode == debug ] |
| 54 NonParameterizedFactoryTest: Crash # Issue 226 | 56 NonParameterizedFactoryTest: Crash # Issue 226 |
| 55 | 57 |
| 56 # Problems specific to dartc optimized mode | 58 # Problems specific to dartc optimized mode |
| 57 [ ($component == dartc || $component == chromium) && $mode == release ] | 59 [ ($component == dartc || $component == chromium) && $mode == release ] |
| 58 MethodInvocationTest: Fail # Bug 5392266 | 60 MethodInvocationTest: Fail # Bug 5392266 |
| 59 Label2NegativeTest: Crash # Bug 5318228 | 61 Label2NegativeTest: Crash # Bug 5318228 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 174 TypedMessageTest: Fail # Bug 5246195 | 176 TypedMessageTest: Fail # Bug 5246195 |
| 175 | 177 |
| 176 [ $arch == x64 ] | 178 [ $arch == x64 ] |
| 177 *: Skip | 179 *: Skip |
| 178 | 180 |
| 179 [ $arch == simarm ] | 181 [ $arch == simarm ] |
| 180 *: Skip | 182 *: Skip |
| 181 | 183 |
| 182 [ $arch == arm ] | 184 [ $arch == arm ] |
| 183 *: Skip | 185 *: Skip |
| OLD | NEW |