| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 scope_negative_test: Fail # Bug 4207538. | 106 scope_negative_test: Fail # Bug 4207538. |
| 107 static_call_wrong_argument_count_negative_test: Fail | 107 static_call_wrong_argument_count_negative_test: Fail |
| 108 string_interpolation8_test: Fail # Issue 2126. | 108 string_interpolation8_test: Fail # Issue 2126. |
| 109 switch7_negative_test: Fail # Bug 4208467. | 109 switch7_negative_test: Fail # Bug 4208467. |
| 110 switch_label_test: Fail # Bug 4208467. | 110 switch_label_test: Fail # Bug 4208467. |
| 111 syntax_test: Skip # Bug 2107 Static type warnings in none case | 111 syntax_test: Skip # Bug 2107 Static type warnings in none case |
| 112 third_test: Skip # Seems flaky in dartc after fixing test, was Bug 5339586 | 112 third_test: Skip # Seems flaky in dartc after fixing test, was Bug 5339586 |
| 113 throw7_negative_test: Fail # Bug 4208459. | 113 throw7_negative_test: Fail # Bug 4208459. |
| 114 type_dartc_test: Fail # Issue 2348 | 114 type_dartc_test: Fail # Issue 2348 |
| 115 type_variable_bounds_test/00: Fail # issue 3079 | 115 type_variable_bounds_test/00: Fail # issue 3079 |
| 116 constructor_redirect_test/01: Fail # For the wrong reason - Issue 2105. | |
| 117 | 116 |
| 118 # | 117 # |
| 119 # Add new dartc annotations above in alphabetical order | 118 # Add new dartc annotations above in alphabetical order |
| 120 # | 119 # |
| 121 | 120 |
| 122 # VM or Frog specific tests that should not be run by DartC. | 121 # VM or Frog specific tests that should not be run by DartC. |
| 123 *vm_test: Skip | 122 *vm_test: Skip |
| 124 *vm_negative_test: Skip | 123 *vm_negative_test: Skip |
| 125 *frog_test: Skip | 124 *frog_test: Skip |
| 126 *frog_negative_test: Skip | 125 *frog_negative_test: Skip |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 prefix_core_test: Fail # Issue 2264. | 425 prefix_core_test: Fail # Issue 2264. |
| 427 | 426 |
| 428 [ $compiler == frog && $runtime == none ] | 427 [ $compiler == frog && $runtime == none ] |
| 429 *: Skip | 428 *: Skip |
| 430 | 429 |
| 431 [ $arch == simarm ] | 430 [ $arch == simarm ] |
| 432 *: Skip | 431 *: Skip |
| 433 | 432 |
| 434 [ $arch == arm ] | 433 [ $arch == arm ] |
| 435 *: Skip | 434 *: Skip |
| OLD | NEW |