| 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 *vm_test: Skip | 312 *vm_test: Skip |
| 313 *vm_negative_test: Skip | 313 *vm_negative_test: Skip |
| 314 | 314 |
| 315 | 315 |
| 316 [ $compiler == none && $runtime == drt ] | 316 [ $compiler == none && $runtime == drt ] |
| 317 final_variable_assignment_test/01: Fail | 317 final_variable_assignment_test/01: Fail |
| 318 final_variable_assignment_test/02: Fail | 318 final_variable_assignment_test/02: Fail |
| 319 final_variable_assignment_test/03: Fail | 319 final_variable_assignment_test/03: Fail |
| 320 final_variable_assignment_test/04: Fail | 320 final_variable_assignment_test/04: Fail |
| 321 gc_test: Skip # Issue 1487 | 321 gc_test: Skip # Issue 1487 |
| 322 prefix_new_test: Fail | |
| 323 import_combinators_test: Fail | 322 import_combinators_test: Fail |
| 324 export_test: Fail # Issue 5785 | |
| 325 export_cyclic_test: Fail # Issue 5785 | 323 export_cyclic_test: Fail # Issue 5785 |
| 326 first_class_types_libraries_test: Fail # Issue 2264 | 324 first_class_types_libraries_test: Fail # Issue 2264 |
| 327 local_export_test: Fail # http://dartbug.com/2264 | 325 local_export_test: Fail # http://dartbug.com/2264 |
| 328 | 326 |
| 329 | 327 |
| 330 [ $runtime == dartium ] | 328 [ $runtime == dartium ] |
| 331 import_combinators_test: Fail | 329 import_combinators_test: Fail |
| 332 | 330 |
| 333 | 331 |
| 334 [ $runtime == vm || ($runtime == drt && $compiler == none) ] | 332 [ $runtime == vm || ($runtime == drt && $compiler == none) ] |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 compile_time_constant_checked3_test/05: Fail, OK | 568 compile_time_constant_checked3_test/05: Fail, OK |
| 571 compile_time_constant_checked3_test/06: Fail, OK | 569 compile_time_constant_checked3_test/06: Fail, OK |
| 572 | 570 |
| 573 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 571 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 574 | 572 |
| 575 call_through_null_getter_test: Fail # issue 6130 | 573 call_through_null_getter_test: Fail # issue 6130 |
| 576 | 574 |
| 577 # This is a VM error when the compiled code is run. | 575 # This is a VM error when the compiled code is run. |
| 578 invocation_mirror_test: Fail # issue 3326, 3622. | 576 invocation_mirror_test: Fail # issue 3326, 3622. |
| 579 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 577 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |