| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 # | 298 # |
| 299 # Add new dartc annotations above in alphabetical order | 299 # Add new dartc annotations above in alphabetical order |
| 300 # | 300 # |
| 301 | 301 |
| 302 # VM specific tests that should not be run by DartC. | 302 # VM specific tests that should not be run by DartC. |
| 303 *vm_test: Skip | 303 *vm_test: Skip |
| 304 *vm_negative_test: Skip | 304 *vm_negative_test: Skip |
| 305 | 305 |
| 306 | 306 |
| 307 [ $compiler == none && $runtime == drt ] | 307 [ $compiler == none && $runtime == drt ] |
| 308 type_variable_field_initializer_closure_test: Fail # issue 8847 |
| 308 final_variable_assignment_test/01: Fail | 309 final_variable_assignment_test/01: Fail |
| 309 final_variable_assignment_test/02: Fail | 310 final_variable_assignment_test/02: Fail |
| 310 final_variable_assignment_test/03: Fail | 311 final_variable_assignment_test/03: Fail |
| 311 final_variable_assignment_test/04: Fail | 312 final_variable_assignment_test/04: Fail |
| 312 gc_test: Skip # Issue 1487 | 313 gc_test: Skip # Issue 1487 |
| 313 | 314 |
| 314 | 315 |
| 315 [ $runtime == dartium ] | 316 [ $runtime == dartium ] |
| 316 import_combinators_test: Fail | 317 import_combinators_test: Fail |
| 317 | 318 |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 *: Skip | 560 *: Skip |
| 560 | 561 |
| 561 [ $arch == simarm ] | 562 [ $arch == simarm ] |
| 562 *: Skip | 563 *: Skip |
| 563 | 564 |
| 564 [ $arch == mips ] | 565 [ $arch == mips ] |
| 565 *: Skip | 566 *: Skip |
| 566 | 567 |
| 567 [ $arch == simmips ] | 568 [ $arch == simmips ] |
| 568 *: Skip | 569 *: Skip |
| OLD | NEW |