| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 # Add new dartc annotations above in alphabetical order | 293 # Add new dartc annotations above in alphabetical order |
| 294 # | 294 # |
| 295 | 295 |
| 296 # VM specific tests that should not be run by DartC. | 296 # VM specific tests that should not be run by DartC. |
| 297 *vm_test: Skip | 297 *vm_test: Skip |
| 298 *vm_negative_test: Skip | 298 *vm_negative_test: Skip |
| 299 | 299 |
| 300 | 300 |
| 301 [ $compiler == none && $runtime == drt ] | 301 [ $compiler == none && $runtime == drt ] |
| 302 type_variable_field_initializer_closure_test: Fail # issue 8847 | 302 type_variable_field_initializer_closure_test: Fail # issue 8847 |
| 303 closures_initializer_test: Fail # VM bug: issue 8847 |
| 303 final_variable_assignment_test/01: Fail | 304 final_variable_assignment_test/01: Fail |
| 304 final_variable_assignment_test/02: Fail | 305 final_variable_assignment_test/02: Fail |
| 305 final_variable_assignment_test/03: Fail | 306 final_variable_assignment_test/03: Fail |
| 306 final_variable_assignment_test/04: Fail | 307 final_variable_assignment_test/04: Fail |
| 307 extends_test: Pass, Fail # issue 11023, may pass or fail depending on loading or
der | 308 extends_test: Pass, Fail # issue 11023, may pass or fail depending on loading or
der |
| 308 | 309 |
| 309 | 310 |
| 310 [ $runtime == dartium ] | 311 [ $runtime == dartium ] |
| 311 import_combinators_test: Fail | 312 import_combinators_test: Fail |
| 312 | 313 |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 | 569 |
| 569 [ $arch == mips ] | 570 [ $arch == mips ] |
| 570 *: Skip | 571 *: Skip |
| 571 | 572 |
| 572 | 573 |
| 573 [ $arch == simmips ] | 574 [ $arch == simmips ] |
| 574 arithmetic_test: Crash # Too far relative branch. | 575 arithmetic_test: Crash # Too far relative branch. |
| 575 large_implicit_getter_test: Crash # Too far relative branch. | 576 large_implicit_getter_test: Crash # Too far relative branch. |
| 576 stack_overflow_test: Crash | 577 stack_overflow_test: Crash |
| 577 stack_overflow_stacktrace_test: Crash | 578 stack_overflow_stacktrace_test: Crash |
| OLD | NEW |