| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 *vm_negative_test: Skip | 150 *vm_negative_test: Skip |
| 151 | 151 |
| 152 | 152 |
| 153 [ $compiler == none && $runtime == drt ] | 153 [ $compiler == none && $runtime == drt ] |
| 154 gc_test: Skip # Issue 1487 | 154 gc_test: Skip # Issue 1487 |
| 155 import_core_no_prefix_test: Fail # Issue 4607 | 155 import_core_no_prefix_test: Fail # Issue 4607 |
| 156 | 156 |
| 157 [ $runtime == dartium ] | 157 [ $runtime == dartium ] |
| 158 import_core_no_prefix_test: Fail # Issue 4607 | 158 import_core_no_prefix_test: Fail # Issue 4607 |
| 159 | 159 |
| 160 [ $runtime == vm ] |
| 161 import_core_no_prefix_test: Fail # Issue 4607 |
| 162 |
| 160 [ $runtime == chrome ] | 163 [ $runtime == chrome ] |
| 161 string_escape1_negative_test: Skip | 164 string_escape1_negative_test: Skip |
| 162 | 165 |
| 163 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. | 166 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. |
| 164 [ $runtime == opera ] | 167 [ $runtime == opera ] |
| 165 *: Skip | 168 *: Skip |
| 166 | 169 |
| 167 [ $runtime == ie && ($system == linux || $system == macos) ] | 170 [ $runtime == ie && ($system == linux || $system == macos) ] |
| 168 *: Skip | 171 *: Skip |
| 169 | 172 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 disable_privacy_test: Fail, Ok | 285 disable_privacy_test: Fail, Ok |
| 283 # This test hard codes name of file being run and precise position. | 286 # This test hard codes name of file being run and precise position. |
| 284 generic_test: Fail, Ok | 287 generic_test: Fail, Ok |
| 285 # Minified mode failures. | 288 # Minified mode failures. |
| 286 # TODO(antonm): proper support in test framework. | 289 # TODO(antonm): proper support in test framework. |
| 287 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 290 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 288 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 291 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 289 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 292 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 290 | 293 |
| 291 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 294 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |