| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 pseudo_kw_illegal_test/10: Fail | 236 pseudo_kw_illegal_test/10: Fail |
| 237 pseudo_kw_illegal_test/11: Fail | 237 pseudo_kw_illegal_test/11: Fail |
| 238 pseudo_kw_illegal_test/12: Fail | 238 pseudo_kw_illegal_test/12: Fail |
| 239 pseudo_kw_illegal_test/13: Fail | 239 pseudo_kw_illegal_test/13: Fail |
| 240 pseudo_kw_illegal_test/14: Fail | 240 pseudo_kw_illegal_test/14: Fail |
| 241 pseudo_kw_illegal_test/15: Fail | 241 pseudo_kw_illegal_test/15: Fail |
| 242 pseudo_kw_illegal_test/16: Fail | 242 pseudo_kw_illegal_test/16: Fail |
| 243 pseudo_kw_test: Fail | 243 pseudo_kw_test: Fail |
| 244 # external keyword is not yet supported by dart2js/dart2dart. | 244 # external keyword is not yet supported by dart2js/dart2dart. |
| 245 external_test/*: Skip | 245 external_test/*: Skip |
| 246 const_syntax_test/03: Fail, OK | 246 final_syntax_test/none: Fail, OK # Issue 3558 |
| 247 const_syntax_test/04: Fail, OK | |
| 248 final_syntax_test/03: Fail, OK | |
| 249 final_syntax_test/04: Fail, OK | |
| 250 lazy_static_test: Fail, OK # Issue 3558 | 247 lazy_static_test: Fail, OK # Issue 3558 |
| 251 lazy_static2_test: Fail, OK # Issue 3558 | 248 lazy_static2_test: Fail, OK # Issue 3558 |
| 249 lazy_static3_test: Fail, OK # Issue 3558 |
| 252 # Call operator is not supported by DartVM (see suppression above.) | 250 # Call operator is not supported by DartVM (see suppression above.) |
| 253 call_operator_test: Fail | 251 call_operator_test: Fail |
| 254 # dart2js frontend doesn't even analyse problematic classes. | 252 # dart2js frontend doesn't even analyse problematic classes. |
| 255 class_extends_negative_test: Fail | 253 class_extends_negative_test: Fail |
| 256 duplicate_implements_test/01: Fail | 254 duplicate_implements_test/01: Fail |
| 257 duplicate_implements_test/02: Fail | 255 duplicate_implements_test/02: Fail |
| 258 duplicate_implements_test/03: Fail | 256 duplicate_implements_test/03: Fail |
| 259 duplicate_implements_test/04: Fail | 257 duplicate_implements_test/04: Fail |
| 260 field2_negative_test: Fail | 258 field2_negative_test: Fail |
| 261 field4_negative_test: Fail | 259 field4_negative_test: Fail |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 disable_privacy_test: Fail, Ok | 317 disable_privacy_test: Fail, Ok |
| 320 # This test hard codes name of file being run and precise position. | 318 # This test hard codes name of file being run and precise position. |
| 321 generic_test: Fail, Ok | 319 generic_test: Fail, Ok |
| 322 # Minified mode failures. | 320 # Minified mode failures. |
| 323 # TODO(antonm): proper support in test framework. | 321 # TODO(antonm): proper support in test framework. |
| 324 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 322 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 325 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 323 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 326 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 324 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 327 | 325 |
| 328 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 326 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |