| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 label_test: Fail | 300 label_test: Fail |
| 301 list_literal3_test: Fail # vm and frog throw different exceptions | 301 list_literal3_test: Fail # vm and frog throw different exceptions |
| 302 list_literal4_test: Fail # missing type checks on index operations | 302 list_literal4_test: Fail # missing type checks on index operations |
| 303 list_test: Fail # array bound checks not implemented | 303 list_test: Fail # array bound checks not implemented |
| 304 local_function3_test: Fail | 304 local_function3_test: Fail |
| 305 local_function_test: Fail | 305 local_function_test: Fail |
| 306 many_generic_instanceof_test: Fail | 306 many_generic_instanceof_test: Fail |
| 307 map_literal4_test: Fail # missing checks on map index operations | 307 map_literal4_test: Fail # missing checks on map index operations |
| 308 math_test: Fail | 308 math_test: Fail |
| 309 method_override_test: Fail # checking on precise type rules for methods | 309 method_override_test: Fail # checking on precise type rules for methods |
| 310 method_override2_test/00: Fail |
| 311 method_override2_test/01: Fail |
| 312 method_override2_test/02: Fail |
| 313 method_override2_test/03: Fail |
| 310 named_parameters_type_test: Fail | 314 named_parameters_type_test: Fail |
| 311 named_parameters_with_conversions_test: Fail | 315 named_parameters_with_conversions_test: Fail |
| 312 non_const_super_negative_test: Fail | 316 non_const_super_negative_test: Fail |
| 313 null_pointer_exception_test: Fail | 317 null_pointer_exception_test: Fail |
| 314 null_test: Fail | 318 null_test: Fail |
| 315 null_to_string_test: Fail | 319 null_to_string_test: Fail |
| 316 numbers_test: Fail | 320 numbers_test: Fail |
| 317 override_field_test/01: Fail | 321 override_field_test/01: Fail |
| 318 override_field_test/04: Fail | 322 override_field_test/04: Fail |
| 319 override_method_with_field_test/01: Fail | 323 override_method_with_field_test/01: Fail |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. | 456 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. |
| 453 | 457 |
| 454 [ $compiler == frog && $runtime == none ] | 458 [ $compiler == frog && $runtime == none ] |
| 455 *: Skip | 459 *: Skip |
| 456 | 460 |
| 457 [ $arch == simarm ] | 461 [ $arch == simarm ] |
| 458 *: Skip | 462 *: Skip |
| 459 | 463 |
| 460 [ $arch == arm ] | 464 [ $arch == arm ] |
| 461 *: Skip | 465 *: Skip |
| OLD | NEW |