Chromium Code Reviews| 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. |
| 11 # | 11 # |
| 12 # 1) Copy the old version of the test to | 12 # 1) Copy the old version of the test to |
| 13 # tests/language/src/test_name_[dartc|vm]_test.dart. | 13 # tests/language/src/test_name_[dartc|vm]_test.dart. |
| 14 # to maintain coverage. | 14 # to maintain coverage. |
| 15 # 2) File a bug on each architecture for the failure due to the language change. | 15 # 2) File a bug on each architecture for the failure due to the language change. |
| 16 # 3) Update the language/src directory with the updated test. | 16 # 3) Update the language/src directory with the updated test. |
| 17 | 17 |
| 18 [ $compiler == none ] | 18 [ $compiler == none ] |
| 19 constructor_negative_test: Pass # For the wrong reason. | |
|
ngeoffray
2012/10/31 10:33:03
Please file a bug
karlklose
2012/10/31 13:01:18
I do not know the reason, this is copied.
karlklose
2012/11/01 07:57:13
Actually this does pass for the right reason, so I
| |
| 19 part_test: Fail | 20 part_test: Fail |
| 20 part2_test: Fail | 21 part2_test: Fail |
| 21 gc_test: Fail # Issue 1487 | 22 gc_test: Fail # Issue 1487 |
| 22 field_override_test/none: Fail # Issue 742: field shadowing now allowed | 23 field_override_test/none: Fail # Issue 742: field shadowing now allowed |
| 23 field_override_test/01: Fail # Issue 742: field shadowing now allowed | 24 field_override_test/01: Fail # Issue 742: field shadowing now allowed |
| 24 super_field_access_test: Fail # Issue 742: field shadowing now allowed | 25 super_field_access_test: Fail # Issue 742: field shadowing now allowed |
| 25 pseudo_kw_illegal_test/03: Fail # Issue 356 | 26 pseudo_kw_illegal_test/03: Fail # Issue 356 |
| 26 pseudo_kw_illegal_test/08: Fail # Issue 356 | 27 pseudo_kw_illegal_test/08: Fail # Issue 356 |
| 27 pseudo_kw_illegal_test/10: Fail # Issue 356 | 28 pseudo_kw_illegal_test/10: Fail # Issue 356 |
| 28 pseudo_kw_illegal_test/14: Fail # Issue 356 | 29 pseudo_kw_illegal_test/14: Fail # Issue 356 |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 321 export_cyclic_test: Fail # Issue 5785 | 322 export_cyclic_test: Fail # Issue 5785 |
| 322 first_class_types_libraries_test: Fail # Issue 2264 | 323 first_class_types_libraries_test: Fail # Issue 2264 |
| 323 local_export_test: Fail # http://dartbug.com/2264 | 324 local_export_test: Fail # http://dartbug.com/2264 |
| 324 | 325 |
| 325 | 326 |
| 326 [ $runtime == dartium ] | 327 [ $runtime == dartium ] |
| 327 import_combinators_test: Fail | 328 import_combinators_test: Fail |
| 328 | 329 |
| 329 | 330 |
| 330 [ $runtime == vm || ($runtime == drt && $compiler == none) ] | 331 [ $runtime == vm || ($runtime == drt && $compiler == none) ] |
| 332 first_class_types_literals_test: Fail | |
|
ngeoffray
2012/10/31 10:33:03
ditto
karlklose
2012/10/31 13:01:18
Added existing issue number.
| |
| 331 call_test: Fail # Issue 1604 | 333 call_test: Fail # Issue 1604 |
| 332 | 334 |
| 333 [ $runtime == chrome ] | 335 [ $runtime == chrome ] |
| 334 string_escape1_negative_test: Skip | 336 string_escape1_negative_test: Skip |
| 335 | 337 |
| 336 [ $runtime == ie9 && ($system == linux || $system == macos) ] | 338 [ $runtime == ie9 && ($system == linux || $system == macos) ] |
| 337 *: Skip | 339 *: Skip |
| 338 | 340 |
| 339 [ $runtime == safari && ($system == linux || $system == windows) ] | 341 [ $runtime == safari && ($system == linux || $system == windows) ] |
| 340 *: Skip | 342 *: Skip |
| 341 | 343 |
| 342 [ $browser ] | 344 [ $browser ] |
| 343 | 345 |
| 344 | 346 |
| 345 [ $arch == simarm ] | 347 [ $arch == simarm ] |
| 346 *: Skip | 348 *: Skip |
| 347 | 349 |
| 348 [ $arch == arm ] | 350 [ $arch == arm ] |
| 349 *: Skip | 351 *: Skip |
| 350 | 352 |
| 351 [ $compiler == dart2dart ] | 353 [ $compiler == dart2dart ] |
| 352 # Calling unresolved class constructor: | 354 # Calling unresolved class constructor: |
| 353 # call_constructor_on_unresolvable_class_test/07: Fail | 355 # call_constructor_on_unresolvable_class_test/07: Fail |
| 354 call_nonexistent_constructor_test: Fail | 356 call_nonexistent_constructor_test: Fail |
| 355 | 357 |
| 358 illegal_invocation_test/01: Fail, OK # Typedef literals are expressions now. | |
| 359 illegal_invocation_test/04: Fail, OK # Class literals are expressions now. | |
| 360 illegal_invocation_test/05: Fail, OK # Type variables are expressions now. | |
| 361 | |
| 356 # Renaming type from platform library: | 362 # Renaming type from platform library: |
| 357 dynamic_test: Fail | 363 dynamic_test: Fail |
| 358 | 364 |
| 359 # Factory for another interface (will be obsolete soon). | 365 # Factory for another interface (will be obsolete soon). |
| 360 # factory2_negative_test: Fail | 366 # factory2_negative_test: Fail |
| 361 # factory3_negative_test: Fail | 367 # factory3_negative_test: Fail |
| 362 # factory_negative_test: Fail | 368 # factory_negative_test: Fail |
| 363 default_factory_test: Fail | 369 default_factory_test: Fail |
| 364 factory2_test: Fail | 370 factory2_test: Fail |
| 365 factory3_test: Fail | 371 factory3_test: Fail |
| 366 factory4_test: Fail | 372 factory4_test: Fail |
| 367 factory5_test: Fail | 373 factory5_test: Fail |
| 368 factory_implementation_test: Fail | 374 factory_implementation_test: Fail |
| 369 interface_factory_multi_test: Fail | 375 interface_factory_multi_test: Fail |
| 370 interface_factory_test: Fail | 376 interface_factory_test: Fail |
| 371 non_parameterized_factory2_test: Fail | 377 non_parameterized_factory2_test: Fail |
| 372 non_parameterized_factory_test: Fail | 378 non_parameterized_factory_test: Fail |
| 373 type_variable_scope_test: Fail | 379 type_variable_scope_test: Fail |
| 374 | 380 |
| 375 class_literal_test/05: Fail # http://dartbug.com/5519 | |
| 376 class_literal_test/10: Fail # http://dartbug.com/5519 | |
| 377 class_literal_test/11: Fail # http://dartbug.com/5519 | |
| 378 class_literal_test/12: Fail # http://dartbug.com/5519 | |
| 379 class_literal_test/17: Fail # http://dartbug.com/5519 | |
| 380 class_literal_test/18: Fail # http://dartbug.com/5519 | |
| 381 class_literal_test/19: Fail # http://dartbug.com/5519 | |
| 382 class_literal_test/20: Fail # http://dartbug.com/5519 | |
| 383 class_literal_test/22: Fail # http://dartbug.com/5519 | |
| 384 class_literal_test/25: Fail # http://dartbug.com/5519 | |
| 385 class_literal_test/27: Fail # http://dartbug.com/5519 | |
| 386 class_literal_test/28: Fail # http://dartbug.com/5519 | |
| 387 class_literal_test/29: Fail # http://dartbug.com/5519 | |
| 388 compile_time_constant10_test/01: Fail # http://dartbug.com/5519 | 381 compile_time_constant10_test/01: Fail # http://dartbug.com/5519 |
| 389 compile_time_constant10_test/02: Fail # http://dartbug.com/5519 | 382 compile_time_constant10_test/02: Fail # http://dartbug.com/5519 |
| 390 compile_time_constant_arguments_test/01: Fail # http://dartbug.com/5519 | 383 compile_time_constant_arguments_test/01: Fail # http://dartbug.com/5519 |
| 391 compile_time_constant_arguments_test/02: Fail # http://dartbug.com/5519 | 384 compile_time_constant_arguments_test/02: Fail # http://dartbug.com/5519 |
| 392 compile_time_constant_arguments_test/03: Fail # http://dartbug.com/5519 | 385 compile_time_constant_arguments_test/03: Fail # http://dartbug.com/5519 |
| 393 compile_time_constant_arguments_test/04: Fail # http://dartbug.com/5519 | 386 compile_time_constant_arguments_test/04: Fail # http://dartbug.com/5519 |
| 394 compile_time_constant_arguments_test/05: Fail # http://dartbug.com/5519 | 387 compile_time_constant_arguments_test/05: Fail # http://dartbug.com/5519 |
| 395 compile_time_constant_arguments_test/06: Fail # http://dartbug.com/5519 | 388 compile_time_constant_arguments_test/06: Fail # http://dartbug.com/5519 |
| 396 const_constructor_syntax_test/04: Fail # http://dartbug.com/5519 | 389 const_constructor_syntax_test/04: Fail # http://dartbug.com/5519 |
| 397 const_constructor_syntax_test/05: Fail # http://dartbug.com/5519 | 390 const_constructor_syntax_test/05: Fail # http://dartbug.com/5519 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 560 | 553 |
| 561 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 554 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 562 | 555 |
| 563 call_through_getter_test: Fail # issue 6130 | 556 call_through_getter_test: Fail # issue 6130 |
| 564 call_through_null_getter_test: Fail # issue 6130 | 557 call_through_null_getter_test: Fail # issue 6130 |
| 565 local_function_test: Fail # issue 6130 | 558 local_function_test: Fail # issue 6130 |
| 566 naming_test: Fail # issue 6130 | 559 naming_test: Fail # issue 6130 |
| 567 | 560 |
| 568 # This is a VM error when the compiled code is run. | 561 # This is a VM error when the compiled code is run. |
| 569 invocation_mirror_test: Fail # issue 3326, 3622. | 562 invocation_mirror_test: Fail # issue 3326, 3622. |
| OLD | NEW |