| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 richards_test: Fail | 170 richards_test: Fail |
| 171 string_escape1_negative_test: Skip | 171 string_escape1_negative_test: Skip |
| 172 gc_test: Skip # Issue 1487 | 172 gc_test: Skip # Issue 1487 |
| 173 | 173 |
| 174 [ $compiler == frog && $unchecked ] | 174 [ $compiler == frog && $unchecked ] |
| 175 bool_test: Fail # Issue 2092 | 175 bool_test: Fail # Issue 2092 |
| 176 compile_time_constant_c_test/01: Fail # integers as keys in literal maps. | 176 compile_time_constant_c_test/01: Fail # integers as keys in literal maps. |
| 177 operator4_test: Fail | 177 operator4_test: Fail |
| 178 | 178 |
| 179 [ $compiler == frog ] | 179 [ $compiler == frog ] |
| 180 bit_shift_test: Fail # Frog copies JS semantics: 499 >> 33 !== 0. |
| 180 static_initializer_type_error_test: Fail # Checked mode not implemented. | 181 static_initializer_type_error_test: Fail # Checked mode not implemented. |
| 181 exception_test: Fail # Issue 1785 | 182 exception_test: Fail # Issue 1785 |
| 182 factory3_test: Fail # Issue 417 | 183 factory3_test: Fail # Issue 417 |
| 183 factory2_negative_test: Fail | 184 factory2_negative_test: Fail |
| 184 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. |
| 185 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. |
| 186 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. |
| 187 compile_time_constant_e_test: Fail | 188 compile_time_constant_e_test: Fail |
| 188 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. |
| 189 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. |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 | 670 |
| 670 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. | 671 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. |
| 671 | 672 |
| 672 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". | 673 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". |
| 673 | 674 |
| 674 [ $compiler == dart2js && $mode == release ] | 675 [ $compiler == dart2js && $mode == release ] |
| 675 assign_top_method_negative_test: Crash | 676 assign_top_method_negative_test: Crash |
| 676 | 677 |
| 677 [ $compiler == dart2js && $runtime == none ] | 678 [ $compiler == dart2js && $runtime == none ] |
| 678 *: Fail, Pass # TODO(ahe): Triage these tests. | 679 *: Fail, Pass # TODO(ahe): Triage these tests. |
| OLD | NEW |