| 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 [ $browser ] | 377 [ $browser ] |
| 378 | 378 |
| 379 | 379 |
| 380 [ $arch == simarm ] | 380 [ $arch == simarm ] |
| 381 *: Skip | 381 *: Skip |
| 382 | 382 |
| 383 [ $arch == arm ] | 383 [ $arch == arm ] |
| 384 *: Skip | 384 *: Skip |
| 385 | 385 |
| 386 [ $compiler == dart2dart ] | 386 [ $compiler == dart2dart ] |
| 387 redirecting_factory_infinite_steps_test: Fail # Dart2dart cannot handle redirect
ing constructors. | |
| 388 many_overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode | 387 many_overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode |
| 389 overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode | 388 overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode |
| 390 # Calling unresolved class constructor: | 389 # Calling unresolved class constructor: |
| 391 # call_constructor_on_unresolvable_class_test/07: Fail | 390 # call_constructor_on_unresolvable_class_test/07: Fail |
| 392 call_nonexistent_constructor_test: Fail | 391 call_nonexistent_constructor_test: Fail |
| 393 | 392 |
| 394 bad_override_test/01: Fail | 393 bad_override_test/01: Fail |
| 395 bad_override_test/02: Fail | 394 bad_override_test/02: Fail |
| 396 | 395 |
| 397 illegal_invocation_test/01: Fail, OK # Typedef literals are expressions now. | 396 illegal_invocation_test/01: Fail, OK # Typedef literals are expressions now. |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 compile_time_constant_checked3_test/05: Fail, OK | 588 compile_time_constant_checked3_test/05: Fail, OK |
| 590 compile_time_constant_checked3_test/06: Fail, OK | 589 compile_time_constant_checked3_test/06: Fail, OK |
| 591 | 590 |
| 592 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 591 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 593 | 592 |
| 594 call_through_null_getter_test: Fail # issue 6130 | 593 call_through_null_getter_test: Fail # issue 6130 |
| 595 | 594 |
| 596 # This is a VM error when the compiled code is run. | 595 # This is a VM error when the compiled code is run. |
| 597 invocation_mirror_test: Fail # issue 3326, 3622. | 596 invocation_mirror_test: Fail # issue 3326, 3622. |
| 598 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 597 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |