| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 [ $browser ] | 258 [ $browser ] |
| 259 | 259 |
| 260 | 260 |
| 261 [ $arch == simarm ] | 261 [ $arch == simarm ] |
| 262 *: Skip | 262 *: Skip |
| 263 | 263 |
| 264 [ $arch == arm ] | 264 [ $arch == arm ] |
| 265 *: Skip | 265 *: Skip |
| 266 | 266 |
| 267 [ $compiler == dart2dart ] | 267 [ $compiler == dart2dart ] |
| 268 getter_no_setter2_test/01: Fail, Pass # Test works only for minified output. | |
| 269 metadata_test: Fail | 268 metadata_test: Fail |
| 270 prefix_new_test: Fail | 269 prefix_new_test: Fail |
| 271 # Fails in conservative mode, issue 4935, passes in minifinying mode. | 270 # Fails in conservative mode, issue 4935, passes in minifinying mode. |
| 272 assert_lexical_scope_test: Fail, Pass | 271 assert_lexical_scope_test: Fail, Pass |
| 273 bad_constructor_test/04: Fail | 272 bad_constructor_test/04: Fail |
| 274 bad_constructor_test/05: Fail | 273 bad_constructor_test/05: Fail |
| 275 bad_constructor_test/06: Fail | 274 bad_constructor_test/06: Fail |
| 276 interface_negative_test: Fail | 275 interface_negative_test: Fail |
| 277 abstract_factory_constructor_test/00: Fail | 276 abstract_factory_constructor_test/00: Fail |
| 278 interface_test/00: Fail | 277 interface_test/00: Fail |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 # DartVM problem. | 354 # DartVM problem. |
| 356 closure_with_super_send_test: Fail # Issue 3197. | 355 closure_with_super_send_test: Fail # Issue 3197. |
| 357 closure_with_super_field_test: Fail # Issue 3197. | 356 closure_with_super_field_test: Fail # Issue 3197. |
| 358 constructor5_test: Fail | 357 constructor5_test: Fail |
| 359 constructor6_test: Fail | 358 constructor6_test: Fail |
| 360 fauxverride_test/none: Fail | 359 fauxverride_test/none: Fail |
| 361 field_override_test/01: Fail | 360 field_override_test/01: Fail |
| 362 field_override_test/02: Fail | 361 field_override_test/02: Fail |
| 363 field_override_test/none: Fail | 362 field_override_test/none: Fail |
| 364 gc_test: Fail | 363 gc_test: Fail |
| 364 getter_no_setter2_test/01: Fail # Issue 4898 |
| 365 super_closure_test: Fail | 365 super_closure_test: Fail |
| 366 super_field_access_test: Fail | 366 super_field_access_test: Fail |
| 367 super_first_constructor_test: Fail | 367 super_first_constructor_test: Fail |
| 368 # VM specific tests. | 368 # VM specific tests. |
| 369 disable_privacy_test: Fail, Ok | 369 disable_privacy_test: Fail, Ok |
| 370 # This test hard codes name of file being run and precise position. | 370 # This test hard codes name of file being run and precise position. |
| 371 generic_test: Fail, Ok | 371 generic_test: Fail, Ok |
| 372 # Minified mode failures. | 372 # Minified mode failures. |
| 373 # TODO(antonm): proper support in test framework. | 373 # TODO(antonm): proper support in test framework. |
| 374 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 374 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| (...skipping 27 matching lines...) Expand all Loading... |
| 402 compile_time_constant_checked2_test/03: Fail, OK | 402 compile_time_constant_checked2_test/03: Fail, OK |
| 403 compile_time_constant_checked2_test/04: Fail, OK | 403 compile_time_constant_checked2_test/04: Fail, OK |
| 404 compile_time_constant_checked2_test/05: Fail, OK | 404 compile_time_constant_checked2_test/05: Fail, OK |
| 405 compile_time_constant_checked2_test/06: Fail, OK | 405 compile_time_constant_checked2_test/06: Fail, OK |
| 406 compile_time_constant_checked3_test/01: Fail, OK | 406 compile_time_constant_checked3_test/01: Fail, OK |
| 407 compile_time_constant_checked3_test/02: Fail, OK | 407 compile_time_constant_checked3_test/02: Fail, OK |
| 408 compile_time_constant_checked3_test/03: Fail, OK | 408 compile_time_constant_checked3_test/03: Fail, OK |
| 409 compile_time_constant_checked3_test/04: Fail, OK | 409 compile_time_constant_checked3_test/04: Fail, OK |
| 410 compile_time_constant_checked3_test/05: Fail, OK | 410 compile_time_constant_checked3_test/05: Fail, OK |
| 411 compile_time_constant_checked3_test/06: Fail, OK | 411 compile_time_constant_checked3_test/06: Fail, OK |
| OLD | NEW |