| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 Switch3NegativeTest: Crash # Bug 5318228 | 84 Switch3NegativeTest: Crash # Bug 5318228 |
| 85 ToplevelCollision2Test/none: Fail # Issue 647 | 85 ToplevelCollision2Test/none: Fail # Issue 647 |
| 86 | 86 |
| 87 # Problems specific to dartc debug mode | 87 # Problems specific to dartc debug mode |
| 88 [ ($component == dartc || $component == chromium) && $mode == debug ] | 88 [ ($component == dartc || $component == chromium) && $mode == debug ] |
| 89 | 89 |
| 90 | 90 |
| 91 [ $component == dartc || $component == chromium ] | 91 [ $component == dartc || $component == chromium ] |
| 92 AssertTest: Fail # Uses AssertError class. Bug 4385894. | 92 AssertTest: Fail # Uses AssertError class. Bug 4385894. |
| 93 BitOperationsTest: Fail # Uses bignums. | 93 BitOperationsTest: Fail # Uses bignums. |
| 94 BlackListedTest/01: Fail # Bug 5469684 | |
| 95 BlackListedTest/02: Fail # Bug 5469684 | |
| 96 BlackListedTest/03: Fail # Bug 5469684 | |
| 97 BlackListedTest/04: Fail # Bug 5469684 | |
| 98 BlackListedTest/05: Fail # Bug 5469684 | |
| 99 BlackListedTest/06: Fail # Bug 5469684 | |
| 100 BlackListedTest/07: Fail # Bug 5469684 | |
| 101 BlackListedTest/08: Fail # Bug 5469684 | |
| 102 BlackListedTest/09: Fail # Bug 5469684 | |
| 103 BlackListedTest/10: Fail # Bug 5469684 | |
| 104 BlackListedTest/11: Fail # Bug 5469684 | |
| 105 BlackListedTest/12: Fail # Bug 5469684 | |
| 106 BlackListedTest/13: Fail # Bug 5469684 | |
| 107 BlackListedTest/14: Fail # Bug 5469684 | |
| 108 CTConstTest: Fail # Bug 4510015. | 94 CTConstTest: Fail # Bug 4510015. |
| 109 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 95 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 110 CharEscapeTest: Fail | 96 CharEscapeTest: Fail |
| 111 ConstInit6NegativeTest: Fail # Issue 811 | 97 ConstInit6NegativeTest: Fail # Issue 811 |
| 112 ConstObjectsAreImmutableTest: Fail # Bug 5202940 | 98 ConstObjectsAreImmutableTest: Fail # Bug 5202940 |
| 113 Constructor2Test: Fail # Issue 255 | 99 Constructor2Test: Fail # Issue 255 |
| 114 Constructor3Test: Fail # Issue 257 | 100 Constructor3Test: Fail # Issue 257 |
| 115 Constructor4Test: Fail # Issue 286 | 101 Constructor4Test: Fail # Issue 286 |
| 116 Constructor5Test: Fail # Issue 8440015 + 'super' initializer does not pars
e | 102 Constructor5Test: Fail # Issue 8440015 + 'super' initializer does not pars
e |
| 117 Constructor6Test: Fail # Issue 8440015 + 'super' initializer does not pars
e | 103 Constructor6Test: Fail # Issue 8440015 + 'super' initializer does not pars
e |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 | 318 |
| 333 | 319 |
| 334 [ $arch == x64 ] | 320 [ $arch == x64 ] |
| 335 *: Skip | 321 *: Skip |
| 336 | 322 |
| 337 [ $arch == simarm ] | 323 [ $arch == simarm ] |
| 338 *: Skip | 324 *: Skip |
| 339 | 325 |
| 340 [ $arch == arm ] | 326 [ $arch == arm ] |
| 341 *: Skip | 327 *: Skip |
| OLD | NEW |