| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 # DartC or Frog specific tests that should not be run by the VM | 74 # DartC or Frog specific tests that should not be run by the VM |
| 75 *DartcTest: Skip | 75 *DartcTest: Skip |
| 76 *DartcNegativeTest: Skip | 76 *DartcNegativeTest: Skip |
| 77 *FrogTest: Skip | 77 *FrogTest: Skip |
| 78 *FrogNegativeTest: Skip | 78 *FrogNegativeTest: Skip |
| 79 | 79 |
| 80 # Issue 1034 | 80 # Issue 1034 |
| 81 ConstructorDuplicateInitializersTest/01: Fail | 81 ConstructorDuplicateInitializersTest/01: Fail |
| 82 ConstructorDuplicateInitializersTest/02: Fail | 82 ConstructorDuplicateInitializersTest/02: Fail |
| 83 | 83 |
| 84 # Issue 1360 | |
| 85 OperatorIndexEvaluationOrderTest: Fail | |
| 86 | |
| 87 # Issue 1355 | 84 # Issue 1355 |
| 88 CallOperatorTest: Fail | 85 CallOperatorTest: Fail |
| 89 | 86 |
| 90 # Issue | 87 # Issue |
| 91 [ ($component == vm || $component == dartium) && $unchecked ] | 88 [ ($component == vm || $component == dartium) && $unchecked ] |
| 92 | 89 |
| 93 Prefix16NegativeTest: Fail # Bug 5532534 | 90 Prefix16NegativeTest: Fail # Bug 5532534 |
| 94 FunctionTypeAliasNegativeTest: Fail # Bug 5231617 | 91 FunctionTypeAliasNegativeTest: Fail # Bug 5231617 |
| 95 | 92 |
| 96 [ ($component == vm || $component == dartium) && $checked ] | 93 [ ($component == vm || $component == dartium) && $checked ] |
| 97 | 94 |
| 98 DefaultFactory2Test/01: Fail # Issue 943 | 95 DefaultFactory2Test/01: Fail # Issue 943 |
| 99 WrongNumberTypeArgumentsTest: Fail # This test should be negative | 96 WrongNumberTypeArgumentsTest: Fail # This test should be negative |
| 100 | 97 |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 # these tests are inconsistent in frogium and frogsh-node, investigate | 429 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 433 StaticField1RunNegativeTest: Pass # but error is not correct | 430 StaticField1RunNegativeTest: Pass # but error is not correct |
| 434 StaticField2RunNegativeTest: Pass # but error is not correct | 431 StaticField2RunNegativeTest: Pass # but error is not correct |
| 435 | 432 |
| 436 | 433 |
| 437 [ $arch == simarm ] | 434 [ $arch == simarm ] |
| 438 *: Skip | 435 *: Skip |
| 439 | 436 |
| 440 [ $arch == arm ] | 437 [ $arch == arm ] |
| 441 *: Skip | 438 *: Skip |
| OLD | NEW |