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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 factory2_negative_test: Fail | 184 factory2_negative_test: Fail |
185 call_through_null_getter_test: Fail # Throw ObjectNotClosure instead of NullPoin
terException. | 185 call_through_null_getter_test: Fail # Throw ObjectNotClosure instead of NullPoin
terException. |
186 compile_time_constant_c_test/02: Fail # string-concatenated (+) keys in literal
maps. | 186 compile_time_constant_c_test/02: Fail # string-concatenated (+) keys in literal
maps. |
187 compile_time_constant_d_test: Fail # doesn't recognize 400 + z (with z parameter
of constructor) as compile-time constant. | 187 compile_time_constant_d_test: Fail # doesn't recognize 400 + z (with z parameter
of constructor) as compile-time constant. |
188 compile_time_constant_e_test: Fail | 188 compile_time_constant_e_test: Fail |
189 compile_time_constant_g_test: Fail # compile time constants with super calls to
optional arguments. | 189 compile_time_constant_g_test: Fail # compile time constants with super calls to
optional arguments. |
190 compile_time_constant_k_test: Fail # Constant maps are not canonicalized correct
ly if the same key appears multiple times. | 190 compile_time_constant_k_test: Fail # Constant maps are not canonicalized correct
ly if the same key appears multiple times. |
191 compile_time_constant_l_test: Fail # final instance fields with default values a
re not initialized correctly. | 191 compile_time_constant_l_test: Fail # final instance fields with default values a
re not initialized correctly. |
192 compile_time_constant_o_test: Fail # String constants with string-interpolation. | 192 compile_time_constant_o_test: Fail # String constants with string-interpolation. |
193 compile_time_constant_p_test/01: Fail # Implicit super calls that don't match ar
e not caught in compile-time constants. | 193 compile_time_constant_p_test/01: Fail # Implicit super calls that don't match ar
e not caught in compile-time constants. |
| 194 positive_bit_operations_test: Fail # Frog goes negative. |
194 disable_privacy_test: Skip # Issue 1882: Needs --disable_privacy support. | 195 disable_privacy_test: Skip # Issue 1882: Needs --disable_privacy support. |
195 double_to_string_as_exponential_test: Fail # fails due to -0.0. | 196 double_to_string_as_exponential_test: Fail # fails due to -0.0. |
196 # Once the -0.0 in double_to_string_as_fixed_test is fixed it will probably need
to | 197 # Once the -0.0 in double_to_string_as_fixed_test is fixed it will probably need
to |
197 # be moved to a | 198 # be moved to a |
198 # [ $compiler == frog ] | 199 # [ $compiler == frog ] |
199 # section. | 200 # section. |
200 double_to_string_as_fixed_test: Fail # fails due to -0.0 and due to rounding in
constant propagation. | 201 double_to_string_as_fixed_test: Fail # fails due to -0.0 and due to rounding in
constant propagation. |
201 double_to_string_as_precision_test: Fail # fails due to -0.0. | 202 double_to_string_as_precision_test: Fail # fails due to -0.0. |
202 extend_type_parameter_negative_test: Skip # Issue 886 | 203 extend_type_parameter_negative_test: Skip # Issue 886 |
203 extend_type_parameter2_negative_test: Skip # Issue 886 | 204 extend_type_parameter2_negative_test: Skip # Issue 886 |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 | 655 |
655 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. | 656 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. |
656 | 657 |
657 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". | 658 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". |
658 | 659 |
659 [ $compiler == dart2js && $mode == release ] | 660 [ $compiler == dart2js && $mode == release ] |
660 assign_top_method_negative_test: Crash | 661 assign_top_method_negative_test: Crash |
661 | 662 |
662 [ $compiler == dart2js && $runtime == none ] | 663 [ $compiler == dart2js && $runtime == none ] |
663 *: Fail, Pass # TODO(ahe): Triage these tests. | 664 *: Fail, Pass # TODO(ahe): Triage these tests. |
OLD | NEW |