| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 StaticInitializerTypeErrorTest: Fail # Checked mode not implemented. | 207 StaticInitializerTypeErrorTest: Fail # Checked mode not implemented. |
| 208 ExceptionTest: Fail # Issue 1785 | 208 ExceptionTest: Fail # Issue 1785 |
| 209 Factory3Test: Fail # Issue 417 | 209 Factory3Test: Fail # Issue 417 |
| 210 Factory2NegativeTest: Fail | 210 Factory2NegativeTest: Fail |
| 211 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 211 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 212 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. | 212 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. |
| 213 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. | 213 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. |
| 214 CompileTimeConstantETest: Fail | 214 CompileTimeConstantETest: Fail |
| 215 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti
onal arguments. | 215 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti
onal arguments. |
| 216 CompileTimeConstantKTest: Fail # Constant maps are not canonicalized correctly i
f the same key appears multiple times. | 216 CompileTimeConstantKTest: Fail # Constant maps are not canonicalized correctly i
f the same key appears multiple times. |
| 217 CompileTimeConstantLTest: Fail # final instance fields with default values are n
ot initialized correctly. |
| 217 CompileTimeConstantOTest: Fail # String constants with string-interpolation. | 218 CompileTimeConstantOTest: Fail # String constants with string-interpolation. |
| 219 CompileTimeConstantPTest: Fail # Implicit super calls that don't match are not c
aught in compile-time constants. |
| 218 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. | 220 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| 219 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. | 221 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. |
| 220 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to | 222 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to |
| 221 # be moved to a | 223 # be moved to a |
| 222 # [ $compiler == frog ] | 224 # [ $compiler == frog ] |
| 223 # section. | 225 # section. |
| 224 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. | 226 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. |
| 225 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. | 227 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. |
| 226 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 228 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 227 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 229 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 466 |
| 465 [ ($compiler == frog || $compiler == frogsh) && $runtime == none ] | 467 [ ($compiler == frog || $compiler == frogsh) && $runtime == none ] |
| 466 *: Skip | 468 *: Skip |
| 467 | 469 |
| 468 [ $arch == simarm ] | 470 [ $arch == simarm ] |
| 469 *: Skip | 471 *: Skip |
| 470 | 472 |
| 471 [ $arch == arm ] | 473 [ $arch == arm ] |
| 472 *: Skip | 474 *: Skip |
| 473 | 475 |
| OLD | NEW |