| 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 architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ImplicitThisTest/04: Fail # Issue 374 | 49 ImplicitThisTest/04: Fail # Issue 374 |
| 50 ImplicitThisTest/none: Fail # Issue 374 | 50 ImplicitThisTest/none: Fail # Issue 374 |
| 51 | 51 |
| 52 # DartC or Frog specific tests that should not be run by the VM | 52 # DartC or Frog specific tests that should not be run by the VM |
| 53 *DartcTest: Skip | 53 *DartcTest: Skip |
| 54 *DartcNegativeTest: Skip | 54 *DartcNegativeTest: Skip |
| 55 *FrogTest: Skip | 55 *FrogTest: Skip |
| 56 *FrogNegativeTest: Skip | 56 *FrogNegativeTest: Skip |
| 57 | 57 |
| 58 | 58 |
| 59 [ ($component == vm || $component == dartium) && $mode == debug ] | 59 [ $component == vm && $mode == debug ] |
| 60 NonParameterizedFactoryTest: Crash # Issue 226 | 60 NonParameterizedFactoryTest: Crash # Issue 226 |
| 61 FactoryNegativeTest: Crash # Issue 417 | 61 FactoryNegativeTest: Crash # Issue 417 |
| 62 | 62 |
| 63 [ ($component == vm || $component == dartium) && $mode == release ] | 63 [ $component == vm && $mode == release ] |
| 64 FactoryNegativeTest: Fail # Issue 417 | 64 FactoryNegativeTest: Fail # Issue 417 |
| 65 | 65 |
| 66 # Problems specific to dartc optimized mode | 66 # Problems specific to dartc optimized mode |
| 67 [ ($component == dartc || $component == chromium) && $mode == release ] | 67 [ ($component == dartc || $component == chromium) && $mode == release ] |
| 68 MethodInvocationTest: Fail # Bug 5392266 | 68 MethodInvocationTest: Fail # Bug 5392266 |
| 69 Label2NegativeTest: Crash # Bug 5318228 | 69 Label2NegativeTest: Crash # Bug 5318228 |
| 70 NullPointerExceptionTest: Fail # Bug 5391976 | 70 NullPointerExceptionTest: Fail # Bug 5391976 |
| 71 CallThroughNullGetterTest: Fail # Bug 5391976 | 71 CallThroughNullGetterTest: Fail # Bug 5391976 |
| 72 Private3Test: Fail # Bug 5391976 | 72 Private3Test: Fail # Bug 5391976 |
| 73 Switch3NegativeTest: Crash # Bug 5318228 | 73 Switch3NegativeTest: Crash # Bug 5318228 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 185 |
| 186 | 186 |
| 187 [ $component == dartium ] | 187 [ $component == dartium ] |
| 188 # TODO: These need to be retriaged. | 188 # TODO: These need to be retriaged. |
| 189 ExpectTest: Fail | 189 ExpectTest: Fail |
| 190 StackTraceTest: Fail | 190 StackTraceTest: Fail |
| 191 RichardsTest: Fail | 191 RichardsTest: Fail |
| 192 UnboundGetterTest: Fail | 192 UnboundGetterTest: Fail |
| 193 Private2Test: Fail | 193 Private2Test: Fail |
| 194 Private3Test: Fail | 194 Private3Test: Fail |
| 195 FactoryNegativeTest: Fail # Issue 417 |
| 195 | 196 |
| 196 TypedMessageTest: Fail # Bug 5246195 | 197 TypedMessageTest: Fail # Bug 5246195 |
| 197 | 198 |
| 198 | 199 |
| 199 [ $component == frog || $component == leg ] | 200 [ $component == frog || $component == leg ] |
| 200 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 201 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 201 | 202 |
| 202 [ $component == frogsh || $component == frog || $component == leg ] | 203 [ $component == frogsh || $component == frog || $component == leg ] |
| 203 FactoryNegativeTest: Fail # Issue 417 | 204 FactoryNegativeTest: Fail # Issue 417 |
| 204 | 205 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 FinalVarNegativeTest: Fail | 345 FinalVarNegativeTest: Fail |
| 345 | 346 |
| 346 [ $arch == x64 ] | 347 [ $arch == x64 ] |
| 347 *: Skip | 348 *: Skip |
| 348 | 349 |
| 349 [ $arch == simarm ] | 350 [ $arch == simarm ] |
| 350 *: Skip | 351 *: Skip |
| 351 | 352 |
| 352 [ $arch == arm ] | 353 [ $arch == arm ] |
| 353 *: Skip | 354 *: Skip |
| OLD | NEW |