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