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 [ $compiler == dart2analyzer ] | 5 [ $compiler == dart2analyzer ] |
| 6 # Runtime negative test. No static errors or warnings. | 6 # Runtime negative test. No static errors or warnings. |
| 7 closure_call_wrong_argument_count_negative_test: skip | 7 closure_call_wrong_argument_count_negative_test: skip |
| 8 | 8 |
| 9 # Test issue 12694 (was analyzer issue), (1) when "abstract" is import prefix us ing it as type is warning; (2) currently analyzer resolves prefix as field (don' t ask) | 9 # Test issue 12694 (was analyzer issue), (1) when "abstract" is import prefix us ing it as type is warning; (2) currently analyzer resolves prefix as field (don' t ask) |
| 10 built_in_identifier_prefix_test: CompileTimeError # Issue 12694 | 10 built_in_identifier_prefix_test: CompileTimeError # Issue 12694 |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 419 unary_plus_negative_test: CompileTimeError | 419 unary_plus_negative_test: CompileTimeError |
| 420 unbound_getter_test: StaticWarning | 420 unbound_getter_test: StaticWarning |
| 421 unhandled_exception_negative_test: CompileTimeError | 421 unhandled_exception_negative_test: CompileTimeError |
| 422 unresolved_top_level_method_negative_test: StaticWarning | 422 unresolved_top_level_method_negative_test: StaticWarning |
| 423 vm/type_cast_vm_test: StaticWarning | 423 vm/type_cast_vm_test: StaticWarning |
| 424 vm/type_vm_test: StaticWarning | 424 vm/type_vm_test: StaticWarning |
| 425 void_type_test: StaticWarning | 425 void_type_test: StaticWarning |
| 426 | 426 |
| 427 issue13474_test: StaticWarning, OK # Test Issue | 427 issue13474_test: StaticWarning, OK # Test Issue |
| 428 | 428 |
| 429 # Issue 16391. The analyzer handle compile-time error in checked only in these | |
| 430 # cases: | |
| 431 compile_time_constant_checked2_test/01: CompileTimeError # Language Issue 16391 | |
| 432 compile_time_constant_checked2_test/05: CompileTimeError # Language Issue 16391 | |
| 433 compile_time_constant_checked3_test/01: CompileTimeError # Language Issue 16391 | |
| 434 compile_time_constant_checked3_test/05: CompileTimeError # Language Issue 16391 | |
| 435 list_literal1_test/01: CompileTimeError # Issue 16391 | |
| 436 map_literal1_test/01: CompileTimeError # Issue 16391 | |
| 437 | |
| 438 # The following lines have been left in to quickly switch back to having deferre d loading | 429 # The following lines have been left in to quickly switch back to having deferre d loading |
| 439 # off by default again. | 430 # off by default again. |
| 440 # Deferred loading support, tests marked as failing until support is enabled by default. | 431 # Deferred loading support, tests marked as failing until support is enabled by default. |
| 441 #deferred_closurize_load_library_test: Pass, Fail | 432 #deferred_closurize_load_library_test: Pass, Fail |
| 442 #deferred_not_loaded_check_test/*: Pass, Fail | 433 #deferred_not_loaded_check_test/*: Pass, Fail |
| 443 #deferred_shadow_load_library_test: Pass, Fail | 434 #deferred_shadow_load_library_test: Pass, Fail |
| 444 #deferred_constraints_constants_test/*: Pass, Fail | 435 #deferred_constraints_constants_test/*: Pass, Fail |
| 445 #deferred_load_library_wrong_args_test/*: Pass, Fail | 436 #deferred_load_library_wrong_args_test/*: Pass, Fail |
| 446 #deferred_constraints_type_annotation_test/*: Pass, Fail | 437 #deferred_constraints_type_annotation_test/*: Pass, Fail |
| 447 #deferred_load_inval_code_test: Pass, Fail | 438 #deferred_load_inval_code_test: Pass, Fail |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 458 | 449 |
| 459 # This test uses "const Symbol('_setAt')" | 450 # This test uses "const Symbol('_setAt')" |
| 460 vm/reflect_core_vm_test: CompileTimeError | 451 vm/reflect_core_vm_test: CompileTimeError |
| 461 | 452 |
| 462 # This test is expected to have warnings because of noSuchMethod overriding. | 453 # This test is expected to have warnings because of noSuchMethod overriding. |
| 463 regress_12561_test: StaticWarning | 454 regress_12561_test: StaticWarning |
| 464 | 455 |
| 465 main_not_a_function_test/01: Fail # http://dartbug.com/20030 | 456 main_not_a_function_test/01: Fail # http://dartbug.com/20030 |
| 466 main_test/03: Fail # http://dartbug.com/20030 | 457 main_test/03: Fail # http://dartbug.com/20030 |
| 467 no_main_test/01: Fail # http://dartbug.com/20030 | 458 no_main_test/01: Fail # http://dartbug.com/20030 |
| 459 | |
| 460 # Issue 16391. These tests are supposed to produce a compile time | |
| 461 # error in checked mode, but they produce a compile time error | |
| 462 # regardless of mode: | |
| 463 [ $unchecked ] | |
| 464 compile_time_constant_checked2_test/01: CompileTimeError # Language Issue 16391 | |
| 465 compile_time_constant_checked2_test/05: CompileTimeError # Language Issue 16391 | |
| 466 compile_time_constant_checked3_test/01: CompileTimeError # Language Issue 16391 | |
| 467 compile_time_constant_checked3_test/05: CompileTimeError # Language Issue 16391 | |
| 468 list_literal1_test/01: CompileTimeError # Issue 16391 | |
| 469 map_literal1_test/01: CompileTimeError # Issue 16391 | |
|
kustermann
2014/09/29 16:11:28
I don't understand why there is a difference betwe
Paul Berry
2014/09/29 17:42:23
Sorry--I forgot to include the correct conditions
| |
| OLD | NEW |