| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 MethodInvocationTest: Fail # Bug 5392266 | 63 MethodInvocationTest: Fail # Bug 5392266 |
| 64 NullPointerExceptionTest: Fail # Bug 5391976 | 64 NullPointerExceptionTest: Fail # Bug 5391976 |
| 65 Private3Test: Fail # Bug 5391976 | 65 Private3Test: Fail # Bug 5391976 |
| 66 Switch3NegativeTest: Crash # Bug 5318228 | 66 Switch3NegativeTest: Crash # Bug 5318228 |
| 67 | 67 |
| 68 # Problems specific to dartc debug mode | 68 # Problems specific to dartc debug mode |
| 69 [ ($component == dartc || $component == chromium) && $mode == debug ] | 69 [ ($component == dartc || $component == chromium) && $mode == debug ] |
| 70 | 70 |
| 71 | 71 |
| 72 [ $component == dartc || $component == chromium ] | 72 [ $component == dartc || $component == chromium ] |
| 73 FactoryImplementationTest: Fail # Issue 521 | |
| 74 | |
| 75 AssertTest: Fail # Uses AssertError class. Bug 4385894. | 73 AssertTest: Fail # Uses AssertError class. Bug 4385894. |
| 76 BitOperationsTest: Fail # Uses bignums. | 74 BitOperationsTest: Fail # Uses bignums. |
| 77 BlackListedTest/01: Fail # Bug 5469684 | 75 BlackListedTest/01: Fail # Bug 5469684 |
| 78 BlackListedTest/02: Fail # Bug 5469684 | 76 BlackListedTest/02: Fail # Bug 5469684 |
| 79 BlackListedTest/03: Fail # Bug 5469684 | 77 BlackListedTest/03: Fail # Bug 5469684 |
| 80 BlackListedTest/04: Fail # Bug 5469684 | 78 BlackListedTest/04: Fail # Bug 5469684 |
| 81 BlackListedTest/05: Fail # Bug 5469684 | 79 BlackListedTest/05: Fail # Bug 5469684 |
| 82 BlackListedTest/06: Fail # Bug 5469684 | 80 BlackListedTest/06: Fail # Bug 5469684 |
| 83 BlackListedTest/07: Fail # Bug 5469684 | 81 BlackListedTest/07: Fail # Bug 5469684 |
| 84 BlackListedTest/08: Fail # Bug 5469684 | 82 BlackListedTest/08: Fail # Bug 5469684 |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 StaticField2RunNegativeTest: Fail | 349 StaticField2RunNegativeTest: Fail |
| 352 | 350 |
| 353 [ $arch == x64 ] | 351 [ $arch == x64 ] |
| 354 *: Skip | 352 *: Skip |
| 355 | 353 |
| 356 [ $arch == simarm ] | 354 [ $arch == simarm ] |
| 357 *: Skip | 355 *: Skip |
| 358 | 356 |
| 359 [ $arch == arm ] | 357 [ $arch == arm ] |
| 360 *: Skip | 358 *: Skip |
| OLD | NEW |