Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: tests/co19/co19-analyzer2.status

Issue 25649005: Remove status file entries referring to non-existent tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebased Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tests/co19/co19-co19.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor e =5 it not assignable 6 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor e =5 it not assignable
7 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail 7 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail
8 8
9 # invalid argument for constant constructor 9 # invalid argument for constant constructor
10 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail 10 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail
(...skipping 11 matching lines...) Expand all
22 # TBF: infinite look: class A {const A();final m = const A();} 22 # TBF: infinite look: class A {const A();final m = const A();}
23 Language/12_Expressions/01_Constants_A17_t03: fail 23 Language/12_Expressions/01_Constants_A17_t03: fail
24 24
25 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534 25 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534
26 Language/15_Types/4_Interface_Types_A11_t01: Skip 26 Language/15_Types/4_Interface_Types_A11_t01: Skip
27 Language/15_Types/4_Interface_Types_A11_t02: Skip 27 Language/15_Types/4_Interface_Types_A11_t02: Skip
28 28
29 # TBF: Hence, a static warning will not be issued if f has no declared return ty pe, since the return type would be dynamic and dynamic may be assigned to void. 29 # TBF: Hence, a static warning will not be issued if f has no declared return ty pe, since the return type would be dynamic and dynamic may be assigned to void.
30 Language/13_Statements/11_Return_A07_t01: fail 30 Language/13_Statements/11_Return_A07_t01: fail
31 31
32 # co19 issue #380, Strings class has been removed
33 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A04_t01: f ail, OK
34
35 # co19 issue #400, collection library reorg
36 LibTest/core/String/concat_A01_t01: fail, OK
37 LibTest/core/String/concat_A02_t01: fail, OK
38 LibTest/core/Set/isSubsetOf_A01_t01: fail, OK
39 LibTest/core/Set/isSubsetOf_A01_t02: fail, OK
40
41 # co19 issue #425, Only static fields can be declared as 'const'
42 Language/07_Classes/07_Classes_A02_t11: fail, OK
43
44 # co19 issue #442, undefined name "Expect" 32 # co19 issue #442, undefined name "Expect"
45 Language/15_Types/4_Interface_Types_A08_t03: fail, OK 33 Language/15_Types/4_Interface_Types_A08_t03: fail, OK
46 34
47 # co19 issue #455, undeclared identifier is static warning 35 # co19 issue #455, undeclared identifier is static warning
48 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK 36 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK
49 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK
50 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK 37 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK
51 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK 38 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK
52 39
53 # co19 issue #513, rules for finals were loosened, contradiction in spec was fix ed
54 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: fail, OK
55
56 # 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
57 Language/07_Classes/3_Setters_A08_t03: fail, OK
58
59 # co19 issue #593: Conditional expressions are now allowed as constant expressio ns
60 Language/12_Expressions/01_Constants_A15_t16: fail, OK
61
62 # co19 issue #438, Static variables are initialized lazily, need not be constant s 40 # co19 issue #438, Static variables are initialized lazily, need not be constant s
63 Language/12_Expressions/01_Constants_A16_t01: fail, OK 41 Language/12_Expressions/01_Constants_A16_t01: fail, OK
64 Language/12_Expressions/01_Constants_A16_t02: fail, OK 42 Language/12_Expressions/01_Constants_A16_t02: fail, OK
65 43
66 # co19 issue #420, "throw" requires expression, "rethrow" should be used instead
67 Language/12_Expressions/08_Throw_A05_t01: fail, OK
68 Language/12_Expressions/08_Throw_A05_t02: fail, OK
69 Language/12_Expressions/08_Throw_A05_t03: fail, OK
70
71 # co19 issue #454 (wrongly closed) 44 # co19 issue #454 (wrongly closed)
72 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK 45 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK
73 46
74 # co19 issue #528, Const: wrong number of type arguments 47 # co19 issue #528, Const: wrong number of type arguments
75 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK 48 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK
76 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK 49 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK
77 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK 50 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK
78 51
79 # co19 issue #433 (wrongly closed), missing @static-warning annotation 52 # co19 issue #433 (wrongly closed), missing @static-warning annotation
80 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t07: fail, OK 53 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t07: fail, OK
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 LibTest/core/Invocation/memberName_A01_t01: Fail # co19-roll r607: Please triage this failure 100 LibTest/core/Invocation/memberName_A01_t01: Fail # co19-roll r607: Please triage this failure
128 LibTest/core/Invocation/namedArguments_A01_t01: Fail # co19-roll r607: Please tr iage this failure 101 LibTest/core/Invocation/namedArguments_A01_t01: Fail # co19-roll r607: Please tr iage this failure
129 LibTest/core/Invocation/positionalArguments_A01_t01: Fail # co19-roll r607: Plea se triage this failure 102 LibTest/core/Invocation/positionalArguments_A01_t01: Fail # co19-roll r607: Plea se triage this failure
130 LibTest/core/RuneIterator/currentAsString_A01_t02: Fail # co19-roll r607: Please triage this failure 103 LibTest/core/RuneIterator/currentAsString_A01_t02: Fail # co19-roll r607: Please triage this failure
131 LibTest/core/RuneIterator/current_A01_t02: Fail # co19-roll r607: Please triage this failure 104 LibTest/core/RuneIterator/current_A01_t02: Fail # co19-roll r607: Please triage this failure
132 LibTest/core/Runes/isEmpty_A01_t02: Fail # co19-roll r607: Please triage this fa ilure 105 LibTest/core/Runes/isEmpty_A01_t02: Fail # co19-roll r607: Please triage this fa ilure
133 LibTest/core/Runes/isNotEmpty_A01_t02: Fail # co19-roll r607: Please triage this failure 106 LibTest/core/Runes/isNotEmpty_A01_t02: Fail # co19-roll r607: Please triage this failure
134 LibTest/core/Runes/lastWhere_A02_t01: Fail # co19-roll r607: Please triage this failure 107 LibTest/core/Runes/lastWhere_A02_t01: Fail # co19-roll r607: Please triage this failure
135 LibTest/core/Runes/length_A01_t02: Fail # co19-roll r607: Please triage this fai lure 108 LibTest/core/Runes/length_A01_t02: Fail # co19-roll r607: Please triage this fai lure
136 LibTest/core/Symbol/Symbol_A01_t04: Fail # co19-roll r607: Please triage this fa ilure 109 LibTest/core/Symbol/Symbol_A01_t04: Fail # co19-roll r607: Please triage this fa ilure
OLDNEW
« no previous file with comments | « no previous file | tests/co19/co19-co19.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698