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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 [ $browser ] | 223 [ $browser ] |
224 | 224 |
225 | 225 |
226 [ $arch == simarm ] | 226 [ $arch == simarm ] |
227 *: Skip | 227 *: Skip |
228 | 228 |
229 [ $arch == arm ] | 229 [ $arch == arm ] |
230 *: Skip | 230 *: Skip |
231 | 231 |
232 [ $compiler == dart2dart ] | 232 [ $compiler == dart2dart ] |
233 named_constructor_test: Fail, Pass # Broken in minify mode only. | |
234 assert_with_type_test_or_cast_test: Fail, Pass # Broken in minify mode only. | |
235 assert_with_type_test_or_cast_test: Fail, Pass # Broken in minify mode only. | |
236 assertion_test: Fail, Pass # Broken in minify mode only. | |
237 | |
238 pseudo_kw_illegal_test/02: Fail | 233 pseudo_kw_illegal_test/02: Fail |
239 assert_lexical_scope_test: Fail | 234 # Fails in conservative mode, issue 4935, passes in minifinying mode. |
| 235 assert_lexical_scope_test: Fail, Pass |
240 bad_constructor_test/04: Fail | 236 bad_constructor_test/04: Fail |
241 bad_constructor_test/05: Fail | 237 bad_constructor_test/05: Fail |
242 bad_constructor_test/06: Fail | 238 bad_constructor_test/06: Fail |
243 interface_negative_test: Fail | 239 interface_negative_test: Fail |
244 abstract_factory_constructor_test/00: Fail | 240 abstract_factory_constructor_test/00: Fail |
245 interface_test/00: Fail | 241 interface_test/00: Fail |
246 argument_definition_test/*: Skip # Not implemented. | 242 argument_definition_test/*: Skip # Not implemented. |
247 argument_definition2_test: Skip # Not implemented. Fails in minified tests. | 243 argument_definition2_test: Skip # Not implemented. Fails in minified tests. |
248 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM | 244 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM |
249 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM | 245 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 disable_privacy_test: Fail, Ok | 352 disable_privacy_test: Fail, Ok |
357 # This test hard codes name of file being run and precise position. | 353 # This test hard codes name of file being run and precise position. |
358 generic_test: Fail, Ok | 354 generic_test: Fail, Ok |
359 # Minified mode failures. | 355 # Minified mode failures. |
360 # TODO(antonm): proper support in test framework. | 356 # TODO(antonm): proper support in test framework. |
361 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 357 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
362 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 358 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
363 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 359 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
364 | 360 |
365 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 361 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
OLD | NEW |