| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 [ $compiler == frog && $unchecked ] | 175 [ $compiler == frog && $unchecked ] |
| 176 BoolTest: Fail # Issue 2092 | 176 BoolTest: Fail # Issue 2092 |
| 177 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. | 177 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. |
| 178 Operator4Test: Fail | 178 Operator4Test: Fail |
| 179 | 179 |
| 180 [ $compiler == frog ] | 180 [ $compiler == frog ] |
| 181 StaticInitializerTypeErrorTest: Fail # Checked mode not implemented. | 181 StaticInitializerTypeErrorTest: Fail # Checked mode not implemented. |
| 182 ExceptionTest: Fail # Issue 1785 | 182 ExceptionTest: Fail # Issue 1785 |
| 183 Factory3Test: Fail # Issue 417 | 183 Factory3Test: Fail # Issue 417 |
| 184 Factory2NegativeTest: Fail | 184 Factory2NegativeTest: Fail |
| 185 FBoundedQuantificationTest/01: Fail # Issue 439 |
| 186 FBoundedQuantificationTest/02: Fail # Issue 439 |
| 185 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 187 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 186 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. | 188 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. |
| 187 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. | 189 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. |
| 188 CompileTimeConstantETest: Fail | 190 CompileTimeConstantETest: Fail |
| 189 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti
onal arguments. | 191 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti
onal arguments. |
| 190 CompileTimeConstantKTest: Fail # Constant maps are not canonicalized correctly i
f the same key appears multiple times. | 192 CompileTimeConstantKTest: Fail # Constant maps are not canonicalized correctly i
f the same key appears multiple times. |
| 191 CompileTimeConstantLTest: Fail # final instance fields with default values are n
ot initialized correctly. | 193 CompileTimeConstantLTest: Fail # final instance fields with default values are n
ot initialized correctly. |
| 192 CompileTimeConstantOTest: Fail # String constants with string-interpolation. | 194 CompileTimeConstantOTest: Fail # String constants with string-interpolation. |
| 193 CompileTimeConstantPTest/01: Fail # Implicit super calls that don't match are no
t caught in compile-time constants. | 195 CompileTimeConstantPTest/01: Fail # Implicit super calls that don't match are no
t caught in compile-time constants. |
| 194 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. | 196 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 | 444 |
| 443 [ $compiler == frog && $runtime == none ] | 445 [ $compiler == frog && $runtime == none ] |
| 444 *: Skip | 446 *: Skip |
| 445 | 447 |
| 446 [ $arch == simarm ] | 448 [ $arch == simarm ] |
| 447 *: Skip | 449 *: Skip |
| 448 | 450 |
| 449 [ $arch == arm ] | 451 [ $arch == arm ] |
| 450 *: Skip | 452 *: Skip |
| 451 | 453 |
| OLD | NEW |