| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 [ $browser ] | 347 [ $browser ] |
| 348 | 348 |
| 349 | 349 |
| 350 [ $arch == simarm ] | 350 [ $arch == simarm ] |
| 351 *: Skip | 351 *: Skip |
| 352 | 352 |
| 353 [ $arch == arm ] | 353 [ $arch == arm ] |
| 354 *: Skip | 354 *: Skip |
| 355 | 355 |
| 356 [ $compiler == dart2dart ] | 356 [ $compiler == dart2dart ] |
| 357 many_overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode |
| 358 overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode |
| 357 # Calling unresolved class constructor: | 359 # Calling unresolved class constructor: |
| 358 # call_constructor_on_unresolvable_class_test/07: Fail | 360 # call_constructor_on_unresolvable_class_test/07: Fail |
| 359 call_nonexistent_constructor_test: Fail | 361 call_nonexistent_constructor_test: Fail |
| 360 | 362 |
| 361 # Renaming type from platform library: | 363 # Renaming type from platform library: |
| 362 dynamic_test: Fail | 364 dynamic_test: Fail |
| 363 | 365 |
| 364 # Factory for another interface (will be obsolete soon). | 366 # Factory for another interface (will be obsolete soon). |
| 365 # factory2_negative_test: Fail | 367 # factory2_negative_test: Fail |
| 366 # factory3_negative_test: Fail | 368 # factory3_negative_test: Fail |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 567 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 566 | 568 |
| 567 call_through_getter_test: Fail # issue 6130 | 569 call_through_getter_test: Fail # issue 6130 |
| 568 call_through_null_getter_test: Fail # issue 6130 | 570 call_through_null_getter_test: Fail # issue 6130 |
| 569 local_function_test: Fail # issue 6130 | 571 local_function_test: Fail # issue 6130 |
| 570 naming_test: Fail # issue 6130 | 572 naming_test: Fail # issue 6130 |
| 571 | 573 |
| 572 # This is a VM error when the compiled code is run. | 574 # This is a VM error when the compiled code is run. |
| 573 invocation_mirror_test: Fail # issue 3326, 3622. | 575 invocation_mirror_test: Fail # issue 3326, 3622. |
| 574 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 576 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |