| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 # DartC or Frog specific tests that should not be run by the VM | 69 # DartC or Frog specific tests that should not be run by the VM |
| 70 *DartcTest: Skip | 70 *DartcTest: Skip |
| 71 *DartcNegativeTest: Skip | 71 *DartcNegativeTest: Skip |
| 72 *FrogTest: Skip | 72 *FrogTest: Skip |
| 73 *FrogNegativeTest: Skip | 73 *FrogNegativeTest: Skip |
| 74 | 74 |
| 75 # Issue 1034 | 75 # Issue 1034 |
| 76 ConstructorDuplicateInitializersTest/01: Fail | 76 ConstructorDuplicateInitializersTest/01: Fail |
| 77 ConstructorDuplicateInitializersTest/02: Fail | 77 ConstructorDuplicateInitializersTest/02: Fail |
| 78 | 78 |
| 79 # Issue 1360 |
| 80 OperatorIndexEvaluationOrderTest: Fail |
| 81 |
| 79 [ ($component == vm || $component == dartium) && $unchecked ] | 82 [ ($component == vm || $component == dartium) && $unchecked ] |
| 80 | 83 |
| 81 Prefix16NegativeTest: Fail # Bug 5532534 | 84 Prefix16NegativeTest: Fail # Bug 5532534 |
| 82 FunctionTypeAliasNegativeTest: Fail # Bug 5231617 | 85 FunctionTypeAliasNegativeTest: Fail # Bug 5231617 |
| 83 | 86 |
| 84 [ ($component == vm || $component == dartium) && $checked ] | 87 [ ($component == vm || $component == dartium) && $checked ] |
| 85 | 88 |
| 86 DefaultFactory2Test/01: Fail # Issue 943 | 89 DefaultFactory2Test/01: Fail # Issue 943 |
| 87 WrongNumberTypeArgumentsTest: Fail # This test should be negative | 90 WrongNumberTypeArgumentsTest: Fail # This test should be negative |
| 88 | 91 |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 # these tests are inconsistent in frogium and frogsh-node, investigate | 395 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 393 StaticField1RunNegativeTest: Pass # but error is not correct | 396 StaticField1RunNegativeTest: Pass # but error is not correct |
| 394 StaticField2RunNegativeTest: Pass # but error is not correct | 397 StaticField2RunNegativeTest: Pass # but error is not correct |
| 395 | 398 |
| 396 | 399 |
| 397 [ $arch == simarm ] | 400 [ $arch == simarm ] |
| 398 *: Skip | 401 *: Skip |
| 399 | 402 |
| 400 [ $arch == arm ] | 403 [ $arch == arm ] |
| 401 *: Skip | 404 *: Skip |
| OLD | NEW |