| 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 # | 312 # |
| 313 # Add new dartc annotations above in alphabetical order | 313 # Add new dartc annotations above in alphabetical order |
| 314 # | 314 # |
| 315 | 315 |
| 316 # VM specific tests that should not be run by DartC. | 316 # VM specific tests that should not be run by DartC. |
| 317 *vm_test: Skip | 317 *vm_test: Skip |
| 318 *vm_negative_test: Skip | 318 *vm_negative_test: Skip |
| 319 | 319 |
| 320 | 320 |
| 321 [ $compiler == none && $runtime == drt ] | 321 [ $compiler == none && $runtime == drt ] |
| 322 final_variable_assignment_test/01: Fail |
| 323 final_variable_assignment_test/02: Fail |
| 324 final_variable_assignment_test/03: Fail |
| 325 final_variable_assignment_test/04: Fail |
| 322 gc_test: Skip # Issue 1487 | 326 gc_test: Skip # Issue 1487 |
| 323 prefix_new_test: Fail | 327 prefix_new_test: Fail |
| 324 import_combinators_test: Fail | 328 import_combinators_test: Fail |
| 325 export_test: Fail # Issue 5785 | 329 export_test: Fail # Issue 5785 |
| 326 export_cyclic_test: Fail # Issue 5785 | 330 export_cyclic_test: Fail # Issue 5785 |
| 327 first_class_types_libraries_test: Fail # Issue 2264 | 331 first_class_types_libraries_test: Fail # Issue 2264 |
| 328 local_export_test: Fail # http://dartbug.com/2264 | 332 local_export_test: Fail # http://dartbug.com/2264 |
| 329 | 333 |
| 330 | 334 |
| 331 [ $runtime == dartium ] | 335 [ $runtime == dartium ] |
| (...skipping 22 matching lines...) Expand all Loading... |
| 354 *: Skip | 358 *: Skip |
| 355 | 359 |
| 356 [ $compiler == dart2dart ] | 360 [ $compiler == dart2dart ] |
| 357 # Calling unresolved class constructor: | 361 # Calling unresolved class constructor: |
| 358 # call_constructor_on_unresolvable_class_test/07: Fail | 362 # call_constructor_on_unresolvable_class_test/07: Fail |
| 359 call_nonexistent_constructor_test: Fail | 363 call_nonexistent_constructor_test: Fail |
| 360 | 364 |
| 361 # Renaming type from platform library: | 365 # Renaming type from platform library: |
| 362 dynamic_test: Fail | 366 dynamic_test: Fail |
| 363 | 367 |
| 368 # Missing compile-time error when modifying final local variables |
| 369 final_variable_assignment_test/01: Fail |
| 370 final_variable_assignment_test/02: Fail |
| 371 final_variable_assignment_test/03: Fail |
| 372 final_variable_assignment_test/04: Fail |
| 373 |
| 364 # Factory for another interface (will be obsolete soon). | 374 # Factory for another interface (will be obsolete soon). |
| 365 # factory2_negative_test: Fail | 375 # factory2_negative_test: Fail |
| 366 # factory3_negative_test: Fail | 376 # factory3_negative_test: Fail |
| 367 # factory_negative_test: Fail | 377 # factory_negative_test: Fail |
| 368 default_factory_test: Fail | 378 default_factory_test: Fail |
| 369 factory2_test: Fail | 379 factory2_test: Fail |
| 370 factory3_test: Fail | 380 factory3_test: Fail |
| 371 factory4_test: Fail | 381 factory4_test: Fail |
| 372 factory5_test: Fail | 382 factory5_test: Fail |
| 373 factory_implementation_test: Fail | 383 factory_implementation_test: Fail |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 575 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 566 | 576 |
| 567 call_through_getter_test: Fail # issue 6130 | 577 call_through_getter_test: Fail # issue 6130 |
| 568 call_through_null_getter_test: Fail # issue 6130 | 578 call_through_null_getter_test: Fail # issue 6130 |
| 569 local_function_test: Fail # issue 6130 | 579 local_function_test: Fail # issue 6130 |
| 570 naming_test: Fail # issue 6130 | 580 naming_test: Fail # issue 6130 |
| 571 | 581 |
| 572 # This is a VM error when the compiled code is run. | 582 # This is a VM error when the compiled code is run. |
| 573 invocation_mirror_test: Fail # issue 3326, 3622. | 583 invocation_mirror_test: Fail # issue 3326, 3622. |
| 574 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 584 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |