| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 163 |
| 164 # VM or Frog specific tests that should not be run by DartC. | 164 # VM or Frog specific tests that should not be run by DartC. |
| 165 *VMTest: Skip | 165 *VMTest: Skip |
| 166 *VMNegativeTest: Skip | 166 *VMNegativeTest: Skip |
| 167 *FrogTest: Skip | 167 *FrogTest: Skip |
| 168 *FrogNegativeTest: Skip | 168 *FrogNegativeTest: Skip |
| 169 | 169 |
| 170 | 170 |
| 171 [ $component == dartium ] | 171 [ $component == dartium ] |
| 172 # TODO: These need to be retriaged. | 172 # TODO: These need to be retriaged. |
| 173 ExpectTest: Fail | |
| 174 StackTraceTest: Fail | |
| 175 RichardsTest: Fail | 173 RichardsTest: Fail |
| 176 UnboundGetterTest: Fail | |
| 177 Private2Test: Fail | |
| 178 Private3Test: Fail | |
| 179 TypedMessageTest: Fail # Bug 5246195 | 174 TypedMessageTest: Fail # Bug 5246195 |
| 180 | 175 |
| 181 | 176 |
| 182 [ $component == frog || $component == leg ] | 177 [ $component == frog || $component == leg ] |
| 183 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 178 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 184 | 179 |
| 185 [ $component == frogsh || $component == frog || $component == leg || $component
== webdriver || $component == frogium ] | 180 [ $component == frogsh || $component == frog || $component == leg || $component
== webdriver || $component == frogium ] |
| 186 # TODO(efortuna): Distinguish between specific browser being run for webdriver | 181 # TODO(efortuna): Distinguish between specific browser being run for webdriver |
| 187 # (by flag option) to specify which tests pass. | 182 # (by flag option) to specify which tests pass. |
| 188 FactoryNegativeTest: Fail # Issue 417 | 183 FactoryNegativeTest: Fail # Issue 417 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 StaticField2RunNegativeTest: Fail | 356 StaticField2RunNegativeTest: Fail |
| 362 | 357 |
| 363 [ $arch == x64 ] | 358 [ $arch == x64 ] |
| 364 *: Skip | 359 *: Skip |
| 365 | 360 |
| 366 [ $arch == simarm ] | 361 [ $arch == simarm ] |
| 367 *: Skip | 362 *: Skip |
| 368 | 363 |
| 369 [ $arch == arm ] | 364 [ $arch == arm ] |
| 370 *: Skip | 365 *: Skip |
| OLD | NEW |