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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 # browser, you can be more specific about the failure by using $browser: | 223 # browser, you can be more specific about the failure by using $browser: |
224 # [ $component == webdriver && $browser == chrome ] for example. | 224 # [ $component == webdriver && $browser == chrome ] for example. |
225 [ ($component == frog || $component == frogsh || $component == frogium || $compo
nent == webdriver) && $unchecked ] | 225 [ ($component == frog || $component == frogsh || $component == frogium || $compo
nent == webdriver) && $unchecked ] |
226 BoolTest: Fail # Issue 2092 | 226 BoolTest: Fail # Issue 2092 |
227 | 227 |
228 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 228 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
229 ExceptionTest: Fail # Issue 1785 | 229 ExceptionTest: Fail # Issue 1785 |
230 Factory3Test: Fail # Issue 417 | 230 Factory3Test: Fail # Issue 417 |
231 Factory2NegativeTest: Fail | 231 Factory2NegativeTest: Fail |
232 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 232 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 233 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. |
| 234 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. |
233 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. | 235 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
234 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. | 236 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. |
235 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to | 237 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to |
236 # be moved to a | 238 # be moved to a |
237 # [ $component == frog || $component == frogium || $component == webdriver ] | 239 # [ $component == frog || $component == frogium || $component == webdriver ] |
238 # section. | 240 # section. |
239 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. | 241 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. |
240 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. | 242 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. |
241 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 243 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
242 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 244 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 [ $component == frog && $mode == debug ] | 461 [ $component == frog && $mode == debug ] |
460 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 462 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
461 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 463 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
462 | 464 |
463 [ $arch == simarm ] | 465 [ $arch == simarm ] |
464 *: Skip | 466 *: Skip |
465 | 467 |
466 [ $arch == arm ] | 468 [ $arch == arm ] |
467 *: Skip | 469 *: Skip |
468 | 470 |
OLD | NEW |