| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 GCTest: Skip # Issue 1487 | 206 GCTest: Skip # Issue 1487 |
| 207 | 207 |
| 208 [ $compiler == frogsh ] | 208 [ $compiler == frogsh ] |
| 209 ArithmeticTest: Fail # Issue 1470 | 209 ArithmeticTest: Fail # Issue 1470 |
| 210 IntrinsifiedMethodsTest: Fail # Issue 1470 | 210 IntrinsifiedMethodsTest: Fail # Issue 1470 |
| 211 | 211 |
| 212 [ ($compiler == frog || $compiler == frogsh) && $unchecked ] | 212 [ ($compiler == frog || $compiler == frogsh) && $unchecked ] |
| 213 BoolTest: Fail # Issue 2092 | 213 BoolTest: Fail # Issue 2092 |
| 214 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. | 214 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. |
| 215 | 215 |
| 216 [ $component == frog || $compiler == frogsh ] | 216 [ $compiler == frog || $compiler == frogsh ] |
| 217 ExceptionTest: Fail # Issue 1785 | 217 ExceptionTest: Fail # Issue 1785 |
| 218 Factory3Test: Fail # Issue 417 | 218 Factory3Test: Fail # Issue 417 |
| 219 Factory2NegativeTest: Fail | 219 Factory2NegativeTest: Fail |
| 220 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 220 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 221 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. | 221 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. |
| 222 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. | 222 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. |
| 223 CompileTimeConstantETest: Fail | 223 CompileTimeConstantETest: Fail |
| 224 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti
onal arguments. | 224 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti
onal arguments. |
| 225 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. | 225 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| 226 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. | 226 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 [ $compiler == frog && $mode == debug ] | 466 [ $compiler == frog && $mode == debug ] |
| 467 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 467 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 468 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 468 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 469 | 469 |
| 470 [ $arch == simarm ] | 470 [ $arch == simarm ] |
| 471 *: Skip | 471 *: Skip |
| 472 | 472 |
| 473 [ $arch == arm ] | 473 [ $arch == arm ] |
| 474 *: Skip | 474 *: Skip |
| 475 | 475 |
| OLD | NEW |