| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 [ $arch == arm ] | 376 [ $arch == arm ] |
| 377 *: Skip | 377 *: Skip |
| 378 | 378 |
| 379 [ $compiler == dart2dart ] | 379 [ $compiler == dart2dart ] |
| 380 many_overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode | 380 many_overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode |
| 381 overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode | 381 overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode |
| 382 # Calling unresolved class constructor: | 382 # Calling unresolved class constructor: |
| 383 # call_constructor_on_unresolvable_class_test/07: Fail | 383 # call_constructor_on_unresolvable_class_test/07: Fail |
| 384 call_nonexistent_constructor_test: Fail | 384 call_nonexistent_constructor_test: Fail |
| 385 | 385 |
| 386 bad_override_test/01: Fail |
| 387 bad_override_test/02: Fail |
| 388 |
| 386 illegal_invocation_test/01: Fail, OK # Typedef literals are expressions now. | 389 illegal_invocation_test/01: Fail, OK # Typedef literals are expressions now. |
| 387 illegal_invocation_test/04: Fail, OK # Class literals are expressions now. | 390 illegal_invocation_test/04: Fail, OK # Class literals are expressions now. |
| 388 illegal_invocation_test/05: Fail, OK # Type variables are expressions now. | 391 illegal_invocation_test/05: Fail, OK # Type variables are expressions now. |
| 389 | 392 |
| 390 # Renaming type from platform library: | 393 # Renaming type from platform library: |
| 391 dynamic_test: Fail | 394 dynamic_test: Fail |
| 392 | 395 |
| 393 # Missing compile-time error when modifying final local variables | 396 # Missing compile-time error when modifying final local variables |
| 394 final_variable_assignment_test/01: Fail | 397 final_variable_assignment_test/01: Fail |
| 395 final_variable_assignment_test/02: Fail | 398 final_variable_assignment_test/02: Fail |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 compile_time_constant_checked3_test/05: Fail, OK | 581 compile_time_constant_checked3_test/05: Fail, OK |
| 579 compile_time_constant_checked3_test/06: Fail, OK | 582 compile_time_constant_checked3_test/06: Fail, OK |
| 580 | 583 |
| 581 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 584 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 582 | 585 |
| 583 call_through_null_getter_test: Fail # issue 6130 | 586 call_through_null_getter_test: Fail # issue 6130 |
| 584 | 587 |
| 585 # This is a VM error when the compiled code is run. | 588 # This is a VM error when the compiled code is run. |
| 586 invocation_mirror_test: Fail # issue 3326, 3622. | 589 invocation_mirror_test: Fail # issue 3326, 3622. |
| 587 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 590 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |