| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 # DartC or Frog specific tests that should not be run by the VM | 62 # DartC or Frog specific tests that should not be run by the VM |
| 63 *DartcTest: Skip | 63 *DartcTest: Skip |
| 64 *DartcNegativeTest: Skip | 64 *DartcNegativeTest: Skip |
| 65 *FrogTest: Skip | 65 *FrogTest: Skip |
| 66 *FrogNegativeTest: Skip | 66 *FrogNegativeTest: Skip |
| 67 | 67 |
| 68 # Issue 1034 | 68 # Issue 1034 |
| 69 ConstructorDuplicateInitializersTest/01: Fail | 69 ConstructorDuplicateInitializersTest/01: Fail |
| 70 ConstructorDuplicateInitializersTest/02: Fail | 70 ConstructorDuplicateInitializersTest/02: Fail |
| 71 | 71 |
| 72 ParserQuirksTest: Fail # Issue 1165 |
| 73 |
| 72 [ ($component == vm || $component == dartium) && $checked ] | 74 [ ($component == vm || $component == dartium) && $checked ] |
| 73 | 75 |
| 74 DefaultFactory2Test/01: Fail # Issue 943 | 76 DefaultFactory2Test/01: Fail # Issue 943 |
| 75 | 77 |
| 76 [ $component == vm && $mode == debug ] | 78 [ $component == vm && $mode == debug ] |
| 77 | 79 |
| 78 [ $component == vm && $mode == release ] | 80 [ $component == vm && $mode == release ] |
| 79 | 81 |
| 80 # Problems specific to dartc optimized mode | 82 # Problems specific to dartc optimized mode |
| 81 [ ($component == dartc || $component == chromium) && $mode == release ] | 83 [ ($component == dartc || $component == chromium) && $mode == release ] |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 | 351 |
| 350 | 352 |
| 351 [ $arch == x64 ] | 353 [ $arch == x64 ] |
| 352 *: Skip | 354 *: Skip |
| 353 | 355 |
| 354 [ $arch == simarm ] | 356 [ $arch == simarm ] |
| 355 *: Skip | 357 *: Skip |
| 356 | 358 |
| 357 [ $arch == arm ] | 359 [ $arch == arm ] |
| 358 *: Skip | 360 *: Skip |
| OLD | NEW |