| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 *: Skip | 346 *: Skip |
| 347 | 347 |
| 348 [ $arch == arm ] | 348 [ $arch == arm ] |
| 349 *: Skip | 349 *: Skip |
| 350 | 350 |
| 351 [ $compiler == dart2dart ] | 351 [ $compiler == dart2dart ] |
| 352 # Calling unresolved class constructor: | 352 # Calling unresolved class constructor: |
| 353 # call_constructor_on_unresolvable_class_test/07: Fail | 353 # call_constructor_on_unresolvable_class_test/07: Fail |
| 354 call_nonexistent_constructor_test: Fail | 354 call_nonexistent_constructor_test: Fail |
| 355 | 355 |
| 356 # Redirecting (this, super): | |
| 357 compile_time_constant_g_test: Fail, Pass # Passes in conservative renaming mode | |
| 358 compile_time_constant_i_test: Fail, Pass # Passes in conservative renaming mode | |
| 359 constructor_redirect_test/none: Fail, Pass # Passes in conservative renaming mod
e | |
| 360 cyclic_constructor_test/none: Fail, Pass # Passes in conservative renaming mode | |
| 361 field_initialization_order_test: Fail, Pass # Passes in conservative renaming mo
de | |
| 362 field_parameter_test: Fail, Pass # Passes in conservative renaming mode | |
| 363 instance_field_initializer_test: Fail, Pass # Passes in conservative renaming mo
de | |
| 364 library_prefixes_test: Fail, Pass # Passes in conservative renaming mode | |
| 365 non_const_constructor_without_body_test: Fail, Pass # Passes in conservative ren
aming mode | |
| 366 super_test: Fail, Pass # Passes in conservative renaming mode | |
| 367 | |
| 368 # Renaming type from platform library: | 356 # Renaming type from platform library: |
| 369 dynamic_test: Fail | 357 dynamic_test: Fail |
| 370 | 358 |
| 371 # Factory for another interface (will be obsolete soon). | 359 # Factory for another interface (will be obsolete soon). |
| 372 # factory2_negative_test: Fail | 360 # factory2_negative_test: Fail |
| 373 # factory3_negative_test: Fail | 361 # factory3_negative_test: Fail |
| 374 # factory_negative_test: Fail | 362 # factory_negative_test: Fail |
| 375 default_factory_test: Fail | 363 default_factory_test: Fail |
| 376 factory2_test: Fail | 364 factory2_test: Fail |
| 377 factory3_test: Fail | 365 factory3_test: Fail |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 | 560 |
| 573 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 561 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 574 | 562 |
| 575 call_through_getter_test: Fail # issue 6130 | 563 call_through_getter_test: Fail # issue 6130 |
| 576 call_through_null_getter_test: Fail # issue 6130 | 564 call_through_null_getter_test: Fail # issue 6130 |
| 577 local_function_test: Fail # issue 6130 | 565 local_function_test: Fail # issue 6130 |
| 578 naming_test: Fail # issue 6130 | 566 naming_test: Fail # issue 6130 |
| 579 | 567 |
| 580 # This is a VM error when the compiled code is run. | 568 # This is a VM error when the compiled code is run. |
| 581 invocation_mirror_test: Fail # issue 3326, 3622. | 569 invocation_mirror_test: Fail # issue 3326, 3622. |
| OLD | NEW |