| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 # invalid argument for constant constructor | 6 # invalid argument for constant constructor |
| 7 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail | 7 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail |
| 8 | 8 |
| 9 # TBD: should we check that argument for dynamic parameter of constant construct
or is not compatible with operation that is performed with it? | 9 # TBD: should we check that argument for dynamic parameter of constant construct
or is not compatible with operation that is performed with it? |
| 10 Language/12_Expressions/01_Constants_A16_t03: fail | 10 Language/12_Expressions/01_Constants_A16_t03: fail |
| 11 | 11 |
| 12 # TBF: infinite look: class A {const A();final m = const A();} | 12 # TBF: infinite look: class A {const A();final m = const A();} |
| 13 Language/12_Expressions/01_Constants_A17_t03: fail | 13 Language/12_Expressions/01_Constants_A17_t03: fail |
| 14 | 14 |
| 15 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534 | 15 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534 |
| 16 Language/15_Types/4_Interface_Types_A11_t01: Skip | 16 Language/15_Types/4_Interface_Types_A11_t01: Skip |
| 17 Language/15_Types/4_Interface_Types_A11_t02: Skip | 17 Language/15_Types/4_Interface_Types_A11_t02: Skip |
| 18 | 18 |
| 19 # TBF: "class B1 = A with M1;", typedef cannot be used for mixins | |
| 20 Language/09_Mixins/1_Mixin_Application_A01_t01: Fail | |
| 21 | |
| 22 # TBF: It is a compile-time error if the key of an entry in a constant map liter
al is an instance of a class that implements the operator == unless the key is a
string or integer. | |
| 23 Language/12_Expressions/07_Maps_A13_t01: Fail | |
| 24 | |
| 25 # TBF: malformed or malbounded type in "conts" is static warning | 19 # TBF: malformed or malbounded type in "conts" is static warning |
| 26 Language/12_Expressions/12_Instance_Creation_A01_t08: Fail | 20 Language/12_Expressions/12_Instance_Creation_A01_t08: Fail |
| 27 | 21 |
| 28 # TBF: typedef self reference | 22 # TBF: typedef self reference |
| 29 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t08: Fail | 23 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t08: Fail |
| 30 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t09: Fail | 24 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t09: Fail |
| 31 | 25 |
| 32 | 26 |
| 33 | 27 |
| 34 # co19 issue #442, undefined name "Expect" | 28 # co19 issue #442, undefined name "Expect" |
| 35 Language/15_Types/4_Interface_Types_A08_t03: fail, OK | 29 Language/15_Types/4_Interface_Types_A08_t03: fail, OK |
| 36 | 30 |
| 37 # co19 issue #455, undeclared identifier is static warning | 31 # co19 issue #455, undeclared identifier is static warning |
| 38 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10:
fail, OK | 32 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10:
fail, OK |
| 33 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK |
| 39 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK | 34 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK |
| 40 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK | 35 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK |
| 41 | 36 |
| 37 # co19 issue #513, rules for finals were loosened, contradiction in spec was fix
ed |
| 38 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: fail, OK |
| 39 |
| 40 # co19 issue #515, it is a compile-time error if there is more than one entity w
ith the same name declared in the same scope |
| 41 Language/07_Classes/3_Setters_A08_t03: fail, OK |
| 42 |
| 43 # co19 issue #593: Conditional expressions are now allowed as constant expressio
ns |
| 44 Language/12_Expressions/01_Constants_A15_t16: fail, OK |
| 45 |
| 42 # co19 issue #438, Static variables are initialized lazily, need not be constant
s | 46 # co19 issue #438, Static variables are initialized lazily, need not be constant
s |
| 43 Language/12_Expressions/01_Constants_A16_t01: fail, OK | 47 Language/12_Expressions/01_Constants_A16_t01: fail, OK |
| 44 Language/12_Expressions/01_Constants_A16_t02: fail, OK | 48 Language/12_Expressions/01_Constants_A16_t02: fail, OK |
| 45 | 49 |
| 50 # co19 issue #420, "throw" requires expression, "rethrow" should be used instead |
| 51 Language/12_Expressions/08_Throw_A05_t01: fail, OK |
| 52 Language/12_Expressions/08_Throw_A05_t02: fail, OK |
| 53 Language/12_Expressions/08_Throw_A05_t03: fail, OK |
| 54 |
| 46 # co19 issue #454 (wrongly closed) | 55 # co19 issue #454 (wrongly closed) |
| 47 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK | 56 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK |
| 48 | 57 |
| 49 # co19 issue #528, Const: wrong number of type arguments | 58 # co19 issue #528, Const: wrong number of type arguments |
| 50 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK | 59 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK |
| 51 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK | 60 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK |
| 52 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK | 61 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK |
| 53 | 62 |
| 54 # co19 issue #541: tests contain unqualified reference to static members defined
in superclass | 63 # co19 issue #541: tests contain unqualified reference to static members defined
in superclass |
| 55 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t07:
fail, OK | 64 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t07:
fail, OK |
| 56 Language/12_Expressions/30_Identifier_Reference_A14_t03: fail, OK | 65 Language/12_Expressions/30_Identifier_Reference_A14_t03: fail, OK |
| 57 | 66 |
| 58 # co19 issue #543: invocation of a non-function | 67 # co19 issue #543: invocation of a non-function |
| 59 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_
A03_t02: fail, OK | 68 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_
A03_t02: fail, OK |
| 60 | 69 |
| 61 # co19 issue #564: URI can be any number adjacent string literals | 70 # co19 issue #564: URI can be any number adjacent string literals |
| 62 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK | 71 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK |
| 63 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK | 72 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK |
| 64 | 73 |
| 65 # co19 issue #615: Expect import missing | 74 # co19 issue #615: Expect import missing |
| 66 LibTest/collection/LinkedList/LinkedList_A01_t01: Fail, OK | 75 LibTest/collection/LinkedList/LinkedList_A01_t01: Fail, OK |
| 67 | 76 |
| 77 # co19 issue #617: "hasNext" is not a function; "Expec" |
| 78 LibTest/collection/HasNextIterator/HasNextIterator_A01_t01: Fail, OK |
| 79 |
| 80 # co19 issue #623: main() { {}; } is block and empty statement, not a map |
| 81 Language/13_Statements/02_Expression_Statements_A01_t13: Fail, OK |
| 82 |
| 68 # co19 issue #626: StreamTransformers have been refactored. | 83 # co19 issue #626: StreamTransformers have been refactored. |
| 69 LibTest/async/EventTransformStream/EventTransformStream_A01_t01: Fail | 84 LibTest/async/EventTransformStream/EventTransformStream_A01_t01: Fail |
| 70 LibTest/async/EventTransformStream/EventTransformStream_A01_t02: Fail | 85 LibTest/async/EventTransformStream/EventTransformStream_A01_t02: Fail |
| 71 LibTest/async/EventTransformStream/any_A01_t01: Fail | 86 LibTest/async/EventTransformStream/any_A01_t01: Fail |
| 72 LibTest/async/EventTransformStream/any_A02_t01: Fail | 87 LibTest/async/EventTransformStream/any_A02_t01: Fail |
| 73 LibTest/async/EventTransformStream/asBroadcastStream_A01_t01: Fail | 88 LibTest/async/EventTransformStream/asBroadcastStream_A01_t01: Fail |
| 74 LibTest/async/EventTransformStream/asBroadcastStream_A01_t02: Fail | 89 LibTest/async/EventTransformStream/asBroadcastStream_A01_t02: Fail |
| 75 LibTest/async/EventTransformStream/asBroadcastStream_A02_t01: Fail | 90 LibTest/async/EventTransformStream/asBroadcastStream_A02_t01: Fail |
| 76 LibTest/async/EventTransformStream/contains_A01_t01: Fail | 91 LibTest/async/EventTransformStream/contains_A01_t01: Fail |
| 77 LibTest/async/EventTransformStream/contains_A02_t01: Fail | 92 LibTest/async/EventTransformStream/contains_A02_t01: Fail |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 LibTest/async/EventTransformStream/transform_A01_t01: Fail | 150 LibTest/async/EventTransformStream/transform_A01_t01: Fail |
| 136 LibTest/async/EventTransformStream/where_A01_t01: Fail | 151 LibTest/async/EventTransformStream/where_A01_t01: Fail |
| 137 LibTest/async/EventTransformStream/where_A01_t02: Fail | 152 LibTest/async/EventTransformStream/where_A01_t02: Fail |
| 138 LibTest/async/Stream/asBroadcastStream_A02_t01: Fail | 153 LibTest/async/Stream/asBroadcastStream_A02_t01: Fail |
| 139 LibTest/async/Stream/transform_A01_t01: Fail | 154 LibTest/async/Stream/transform_A01_t01: Fail |
| 140 LibTest/async/StreamEventTransformer/bind_A01_t01: Fail | 155 LibTest/async/StreamEventTransformer/bind_A01_t01: Fail |
| 141 LibTest/async/StreamEventTransformer/handleData_A01_t01: Fail | 156 LibTest/async/StreamEventTransformer/handleData_A01_t01: Fail |
| 142 LibTest/async/StreamEventTransformer/handleDone_A01_t01: Fail | 157 LibTest/async/StreamEventTransformer/handleDone_A01_t01: Fail |
| 143 LibTest/async/StreamEventTransformer/handleError_A01_t01: Fail | 158 LibTest/async/StreamEventTransformer/handleError_A01_t01: Fail |
| 144 | 159 |
| 145 Language/07_Classes/07_Classes_A13_t01: Fail # co19-roll r623: Please triage thi
s failure | 160 Language/13_Statements/09_Switch_A02_t04: Fail # Issue 629 |
| 146 Language/07_Classes/07_Classes_A13_t02: Fail # co19-roll r623: Please triage thi
s failure | 161 |
| 147 Language/07_Classes/07_Classes_A13_t03: Fail # co19-roll r623: Please triage thi
s failure | |
| 148 Language/07_Classes/07_Classes_A13_t04: Fail # co19-roll r623: Please triage thi
s failure | |
| 149 Language/07_Classes/07_Classes_A13_t05: Fail # co19-roll r623: Please triage thi
s failure | |
| 150 Language/07_Classes/07_Classes_A13_t06: Fail # co19-roll r623: Please triage thi
s failure | |
| 151 Language/07_Classes/07_Classes_A13_t07: Fail # co19-roll r623: Please triage thi
s failure | |
| 152 Language/07_Classes/07_Classes_A13_t08: Fail # co19-roll r623: Please triage thi
s failure | |
| 153 Language/07_Classes/07_Classes_A13_t09: Fail # co19-roll r623: Please triage thi
s failure | |
| 154 Language/07_Classes/6_Constructors/2_Factories_A14_t01: Fail # co19-roll r623: P
lease triage this failure | 162 Language/07_Classes/6_Constructors/2_Factories_A14_t01: Fail # co19-roll r623: P
lease triage this failure |
| 155 Language/07_Classes/6_Constructors/2_Factories_A14_t02: Fail # co19-roll r623: P
lease triage this failure | 163 Language/07_Classes/6_Constructors/2_Factories_A14_t02: Fail # co19-roll r623: P
lease triage this failure |
| 156 Language/12_Expressions/01_Constants_A16_t02: Crash # co19-roll r623: Please tri
age this failure | 164 Language/12_Expressions/01_Constants_A16_t02: Crash # co19-roll r623: Please tri
age this failure |
| 157 Language/12_Expressions/05_Strings_A20_t01: Fail # co19-roll r623: Please triage
this failure | 165 Language/12_Expressions/05_Strings_A20_t01: Fail # co19-roll r623: Please triage
this failure |
| 158 LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Fail # co1
9-roll r623: Please triage this failure | 166 LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Fail # co1
9-roll r623: Please triage this failure |
| 159 LibTest/collection/ListQueue/ListQueue_class_A01_t01: Fail # co19-roll r623: Ple
ase triage this failure | 167 LibTest/collection/ListQueue/ListQueue_class_A01_t01: Fail # co19-roll r623: Ple
ase triage this failure |
| 160 LibTest/collection/Queue/Queue_class_A01_t01: Fail # co19-roll r623: Please tria
ge this failure | 168 LibTest/collection/Queue/Queue_class_A01_t01: Fail # co19-roll r623: Please tria
ge this failure |
| 161 LibTest/core/Iterable/Iterable.generate_A01_t01: Fail # co19-roll r623: Please t
riage this failure | 169 LibTest/core/Iterable/Iterable.generate_A01_t01: Fail # co19-roll r623: Please t
riage this failure |
| 162 | |
| OLD | NEW |