| Index: dart/tests/co19/co19-dart2js.status
|
| diff --git a/dart/tests/co19/co19-dart2js.status b/dart/tests/co19/co19-dart2js.status
|
| index 9c0639f773455266099b664672c8dc81b23f5724..debdc3236b8cae31b7ccbe5581b399bf9ec9225f 100644
|
| --- a/dart/tests/co19/co19-dart2js.status
|
| +++ b/dart/tests/co19/co19-dart2js.status
|
| @@ -21,11 +21,6 @@ LibTest/isolate/isolate_api/spawnUri_A02_t03: Pass, Fail # Issue 8920
|
|
|
| Language/03_Overview/1_Scoping_A02_t05: Fail # TODO(ahe): Please triage this failure.
|
| Language/03_Overview/1_Scoping_A02_t06: Fail # TODO(ahe): Please triage this failure.
|
| -Language/05_Variables/05_Variables_A07_t05: Fail # TODO(ahe): Please triage this failure.
|
| -Language/05_Variables/05_Variables_A07_t06: Fail # TODO(ahe): Please triage this failure.
|
| -Language/05_Variables/05_Variables_A07_t07: Fail # TODO(ahe): Please triage this failure.
|
| -Language/05_Variables/05_Variables_A07_t08: Fail # TODO(ahe): Please triage this failure.
|
| -Language/05_Variables/05_Variables_A08_t01: Fail # TODO(ahe): Please triage this failure.
|
| Language/07_Classes/07_Classes_A03_t07: Fail # TODO(ahe): Please triage this failure.
|
| Language/07_Classes/6_Constructors/2_Factories_A07_t01: Fail # TODO(ahe): Please triage this failure.
|
| LibTest/core/List/List_A03_t01: Fail # TODO(kasperl): Please triage this failure.
|
| @@ -119,12 +114,6 @@ LibTest/core/int/isOdd_A01_t01: Fail, OK # co19 issue 277
|
| LibTest/core/int/isEven_A01_t01: Fail, OK # co19 issue 277
|
|
|
| [ $compiler == dart2js ]
|
| -Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| -Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t04: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| -Language/06_Functions/2_Formal_Parameters_A03_t03: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| -Language/06_Functions/2_Formal_Parameters_A03_t04: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| -Language/06_Functions/2_Formal_Parameters_A03_t06: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| -
|
| LibTest/isolate/SendPort/send_A02_t01: Fail # Compile-time error: error: not a compile-time constant
|
|
|
| LibTest/isolate/isolate_api/spawnUri_A02_t01: Fail # Runtime error: Expect.throws() fails
|
| @@ -220,6 +209,7 @@ LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: Fa
|
| # Missing compile-time errors.
|
| #
|
| [ $compiler == dart2js ]
|
| +Language/03_Overview/1_Scoping_A01_t39: Fail # dartbug.com/7202
|
| Language/05_Variables/05_Variables_A01_t04: Fail # Checks that a variable declaration cannot contain both 'final' and 'var'.
|
| Language/05_Variables/05_Variables_A01_t05: Fail # Checks that a variable declaration cannot contain both 'var' and 'type'.
|
| Language/05_Variables/05_Variables_A01_t08: Fail # Checks different variables in a single variable declaration must be delimited by commas.
|
| @@ -227,14 +217,24 @@ Language/05_Variables/05_Variables_A01_t12: Fail # Checks that variable declarat
|
| Language/05_Variables/05_Variables_A01_t13: Fail # Checks that variable declaration cannot contain both 'const' and 'final'.
|
| Language/05_Variables/05_Variables_A01_t14: Fail # Checks that variable declaration cannot contain 'const', 'final' and 'var' simultaneously.
|
| Language/05_Variables/05_Variables_A01_t15: Fail # Checks that a variable declaration cannot contain the 'abstract' keyword.
|
| +Language/05_Variables/05_Variables_A07_t05: Fail # Checks that a compile-time error occurs if a local constant variable is not initialized at declaration.
|
| +Language/05_Variables/05_Variables_A07_t06: Fail # Checks that a compile-time error occurs if a local typed constant variable is not initialized at declaration.
|
| +Language/05_Variables/05_Variables_A07_t07: Fail # Checks that a compile-time error occurs if a global constant variable is not initialized at declaration.
|
| +Language/05_Variables/05_Variables_A07_t08: Fail # Checks that a compile-time error occurs if a global typed constant variable is not initialized at declaration.
|
| +Language/05_Variables/05_Variables_A08_t01: Fail # Checks that a compile-time error occurs if a constant variable is not initialized.
|
| Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t03: Fail # Checks that a required parameter can be constant. Reassigning it should produce a compile-time error.
|
| Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t04: Fail # Checks that static variable declaration can't be a required formal parameter
|
| Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Checks that a functionSignature parameter cannot be final.
|
| Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Checks that a functionSignature parameter cannot be declared as variable.
|
| +Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| +Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t04: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| Language/06_Functions/2_Formal_Parameters_A03_t01: Fail # Checks that it is a compile-time error if a required parameter is declared as a constant variable.
|
| Language/06_Functions/2_Formal_Parameters_A03_t02: Fail # Checks that it is a compile-time error if a required parameter is declared as a constant typed variable.
|
| +Language/06_Functions/2_Formal_Parameters_A03_t03: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| +Language/06_Functions/2_Formal_Parameters_A03_t04: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| Language/06_Functions/2_Formal_Parameters_A03_t05: Fail # Checks that it is a compile-time error if an optional named parameter is declared as a constant typed variable.
|
| Language/06_Functions/2_Formal_Parameters_A03_t05: Fail # Checks that it is a compile-time error if an optional positional parameter is declared as a constant variable.
|
| +Language/06_Functions/2_Formal_Parameters_A03_t06: Fail # TODO(ahe): Enforce optional parameter semantics.
|
| Language/07_Classes/07_Classes_A02_t02: Fail # Checks that it is a compile-time error if a constant constructor declaration includes a body.
|
| Language/07_Classes/07_Classes_A02_t04: Fail # Checks that it is a compile-time error if a constant constructor declaration with initializers includes a body.
|
| Language/07_Classes/07_Classes_A02_t11: Fail # Checks that it is a compile-time error if a static final variable declaration does not include explicit initializer.
|
| @@ -246,6 +246,48 @@ Language/07_Classes/07_Classes_A04_t21: Fail # Checks that a static operator can
|
| Language/07_Classes/07_Classes_A04_t22: Fail # Checks that an abstract static operator can't be used in place of a class member definition./
|
| Language/07_Classes/07_Classes_A04_t24: Fail # Checks that a static abstract getter can't be used in place of a class member definition.
|
| Language/07_Classes/07_Classes_A04_t25: Fail # Checks that a static abstract setter can't be used in place of a class member definition.
|
| +Language/07_Classes/07_Classes_A11_t01: Fail # Checks that a class name cannot be used as a name of a member variable.
|
| +Language/07_Classes/07_Classes_A11_t03: Fail # Checks that a class name cannot be used as a name of a static variable.
|
| +Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t01: Fail # Checks that a compile-time error is produced when a class with constant constructor also declares a non-final instance variable.
|
| +Language/12_Expressions/01_Constants_A16_t01: Fail # Checks that an IntegerDivisionByZeroException raised during evaluation of a compile-time constant causes a compile-time error.
|
| +Language/12_Expressions/01_Constants_A16_t02: Fail # Checks that an OutOfMemoryException raised during evaluation of a compile-time constant causes a compile-time error.
|
| +Language/12_Expressions/01_Constants_A20_t03: Fail # Checks that an identifier expression that denotes a type parameter can not be assigned to a constant variable.
|
| +Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: Fail # Checks that it is a compile-time error if a string interpolation construct does not start with IDENTIFIER_NO_DOLLAR or opening brace.
|
| +Language/12_Expressions/05_Strings_A02_t46: Fail # Checks that multi-line strings that contain characters and sequences prohibited by this grammar, cause compile-time errors.
|
| +Language/12_Expressions/05_Strings_A02_t48: Fail # Checks that multi-line strings that contain characters and sequences prohibited by this grammar, cause compile-time errors.
|
| +Language/12_Expressions/22_Equality_A01_t15: Fail # Checks that equality expressions cannot be operands of another equality expression.
|
| +Language/12_Expressions/22_Equality_A01_t16: Fail # Checks that equality expressions cannot be operands of another equality expression.
|
| +Language/12_Expressions/23_Relational_Expressions_A01_t10: Fail # Checks that a relational expression cannot be the operand of another relational expression.
|
| +Language/12_Expressions/23_Relational_Expressions_A01_t11: Fail # Checks that a relational expression cannot be the operand of another relational expression.
|
| +Language/12_Expressions/23_Relational_Expressions_A01_t12: Fail # Checks that a relational expression cannot be the operand of another relational expression.
|
| +Language/12_Expressions/23_Relational_Expressions_A01_t13: Fail # Checks that a relational expression cannot be the operand of another relational expression.
|
| +Language/12_Expressions/30_Identifier_Reference_A04_t09: Fail # Checks that it is a compile-time error when a built-in identifier dynamic is used as the declared name of a type variable.
|
| +Language/12_Expressions/30_Identifier_Reference_A05_t01: Fail # Checks that it is a compile-time error when a built-in identifier "abstract" is used as a type annotation of a local variable.
|
| +Language/12_Expressions/30_Identifier_Reference_A05_t12: Fail # Checks that it is a compile-time error when a built-in identifier "static" is used as a type annotation of a local variable.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t01: Fail # Checks that a variable declaration statement var e = e; causes a compile-time error.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t02: Fail # Checks that a variable declaration statement T e = e; causes a compile-time error.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t03: Fail # Checks that a variable declaration statement const e = e; causes a compile-time error.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t04: Fail # Checks that a variable declaration statement const T e = e; causes a compile-time error.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t05: Fail # Checks that a variable declaration statement final e = e; causes a compile-time error.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t06: Fail # Checks that a variable declaration statement final T e = e; causes a compile-time error.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t07: Fail # Checks that a variable declaration statement var e = e; causes a compile-time error. A top-level variable with the same name is declared.
|
| +Language/13_Statements/03_Variable_Declaration_A04_t08: Fail # Checks that it is a compile-time error if the initializing expression of a local variable v refers to the name v= even when a top-level variable with the same name is declared.
|
| +Language/13_Statements/11_Return_A05_t01: Fail # Checks that a compile-time error occurs if a return statement of the form return e; appears in a generative constructor.
|
| +Language/13_Statements/11_Return_A05_t02: Fail # Checks that a compile-time error occurs if a return statement of the form return e; appears in a named generative constructor.
|
| +Language/13_Statements/11_Return_A05_t03: Fail # Checks that a compile-time error occurs if a return statement of the form return e; appears in a generative constructor.
|
| +Language/14_Libraries_and_Scripts/5_URIs_A01_t24: Fail # Checks that it is a compile-time error when the URI in a part directive consists of two adjacent string literals instead of one.
|
| +Language/14_Libraries_and_Scripts/5_URIs_A01_t25: Fail # Checks that it is a compile-time error when the URI in a part directive consists of two adjacent multi-line string literals instead of one.
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A06_t01: Fail # Checks that a compile error is produced when a null default value is specified for a required argument in a function type alias.
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A06_t02: Fail # Checks that a compile error is produced when a default value is specified for an optional positional argument in a function type alias.
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A06_t03: Fail # Checks that a compile error is produced when a default value is specified for an optional named argument in a function type alias.
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A06_t04: Fail # Checks that a compile error is produced when a default value is specified for one of the required arguments in a function type alias.
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A06_t05: Fail # Checks that a compile error is produced when default values are specified for several parameters in a function type alias.
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A07_t01: Fail # Checks that self-referencing typedef is not allowed (return value type annotation has the same name as the type alias).
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A07_t02: Fail # Checks that self-referencing typedef is not allowed (positional formal parameter type annotation has the same name as the type alias).
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A07_t03: Fail # Checks that self-referencing typedef is not allowed (positional optional parameter type annotation has the same name as the type alias).
|
| +Language/15_Types/3_Type_Declarations/1_Typedef_A07_t04: Fail # Checks that self-referencing typedef is not allowed (named optional parameter type annotation has the same name as the type alias).
|
| +Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: Fail # Checks that other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0)
|
| +Language/16_Reference/1_Lexical_Rules_A02_t06: Fail # Checks that Unicode whitespaces other than WHITESPACE are not permitted in the source code. Checks symbol U+00a0.
|
|
|
| #
|
| # Unexpected compile-time errors.
|
| @@ -261,11 +303,6 @@ Language/07_Classes/3_Setters_A04_t07: Fail # http://dartbug.com/5023
|
|
|
| Language/07_Classes/07_Classes_A03_t10: Fail # http://dartbug.com/6687
|
|
|
| -#
|
| -# Unexpected runtime errors.
|
| -#
|
| -[ $compiler == dart2js ]
|
| -Language/03_Overview/1_Scoping_A01_t39: Fail # dartbug.com/7202
|
|
|
| [ $compiler == dart2js && $runtime == ie9 ]
|
| # These are most likey due to the fact that IE9 doesn't support typed data
|
| @@ -299,8 +336,6 @@ Language/03_Overview/1_Scoping_A02_t28: fail # co19-roll r559: Please triage thi
|
| Language/05_Variables/05_Variables_A05_t01: fail # co19-roll r546: Please triage this failure
|
| Language/05_Variables/05_Variables_A05_t02: fail # co19-roll r546: Please triage this failure
|
| Language/05_Variables/05_Variables_A05_t03: fail # co19-roll r546: Please triage this failure
|
| -Language/07_Classes/07_Classes_A11_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/07_Classes/07_Classes_A11_t03: fail # co19-roll r546: Please triage this failure
|
| Language/07_Classes/1_Instance_Methods_A01_t01: fail # co19-roll r559: Please triage this failure
|
| Language/07_Classes/1_Instance_Methods_A01_t02: fail # co19-roll r559: Please triage this failure
|
| Language/07_Classes/1_Instance_Methods_A01_t03: fail # co19-roll r559: Please triage this failure
|
| @@ -316,7 +351,6 @@ Language/07_Classes/4_Abstract_Instance_Members_A03_t02: fail # co19-roll r559:
|
| Language/07_Classes/4_Abstract_Instance_Members_A03_t03: fail # co19-roll r559: Please triage this failure
|
| Language/07_Classes/4_Abstract_Instance_Members_A03_t04: fail # co19-roll r559: Please triage this failure
|
| Language/07_Classes/4_Abstract_Instance_Members_A03_t05: fail # co19-roll r559: Please triage this failure
|
| -Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t01: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/00_Object_Identity/1_Object_Identity_A02_t02: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/00_Object_Identity/1_Object_Identity_A04_t01: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/00_Object_Identity/1_Object_Identity_A04_t02: fail # co19-roll r546: Please triage this failure
|
| @@ -326,14 +360,8 @@ Language/12_Expressions/01_Constants_A03_t01: fail # co19-roll r546: Please tria
|
| Language/12_Expressions/01_Constants_A11_t01: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/01_Constants_A12_t01: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/01_Constants_A13_t06: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/01_Constants_A16_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/01_Constants_A16_t02: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/01_Constants_A20_t03: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/03_Numbers_A01_t06: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/03_Numbers_A01_t09: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/05_Strings_A02_t46: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/05_Strings_A02_t48: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/05_Strings_A20_t01: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/07_Maps_A01_t01: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/07_Maps_A08_t02: fail # co19-roll r546: Please triage this failure
|
| @@ -355,17 +383,8 @@ Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A04_t05: fail #
|
| Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A04_t09: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A02_t04: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/22_Equality_A01_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/22_Equality_A01_t15: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/22_Equality_A01_t16: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/22_Equality_A05_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/23_Relational_Expressions_A01_t10: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/23_Relational_Expressions_A01_t11: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/23_Relational_Expressions_A01_t12: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/23_Relational_Expressions_A01_t13: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/30_Identifier_Reference_A02_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/30_Identifier_Reference_A04_t09: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/30_Identifier_Reference_A05_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/12_Expressions/30_Identifier_Reference_A05_t12: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/32_Type_Test_A04_t02: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/32_Type_Test_A04_t03: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/32_Type_Test_A04_t04: fail # co19-roll r546: Please triage this failure
|
| @@ -373,20 +392,9 @@ Language/12_Expressions/33_Type_Cast_A02_t03: fail # co19-roll r546: Please tria
|
| Language/12_Expressions/33_Type_Cast_A03_t02: fail # co19-roll r546: Please triage this failure
|
| Language/12_Expressions/33_Type_Cast_A03_t03: fail # co19-roll r546: Please triage this failure
|
| Language/13_Statements/02_Expression_Statements_A01_t08: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t02: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t03: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t04: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t05: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t06: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t07: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/03_Variable_Declaration_A04_t08: fail # co19-roll r546: Please triage this failure
|
| Language/13_Statements/06_For_A01_t11: fail # co19-roll r546: Please triage this failure
|
| Language/13_Statements/10_Rethrow_A01_t04: fail # co19-roll r559: Please triage this failure
|
| Language/13_Statements/10_Rethrow_A01_t05: fail # co19-roll r559: Please triage this failure
|
| -Language/13_Statements/11_Return_A05_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/11_Return_A05_t02: fail # co19-roll r546: Please triage this failure
|
| -Language/13_Statements/11_Return_A05_t03: fail # co19-roll r546: Please triage this failure
|
| Language/13_Statements/11_Try_A06_t01: fail # co19-roll r546: Please triage this failure
|
| Language/14_Libraries_and_Scripts/13_Libraries_and_Scripts_A05_t03: fail # co19-roll r546: Please triage this failure
|
| Language/14_Libraries_and_Scripts/1_Imports_A02_t28: fail # co19-roll r546: Please triage this failure
|
| @@ -413,23 +421,10 @@ Language/14_Libraries_and_Scripts/4_Scripts_A03_t03: fail # co19-roll r546: Plea
|
| Language/14_Libraries_and_Scripts/5_URIs_A01_t01: fail # co19-roll r546: Please triage this failure
|
| Language/14_Libraries_and_Scripts/5_URIs_A01_t11: fail # co19-roll r546: Please triage this failure
|
| Language/14_Libraries_and_Scripts/5_URIs_A01_t21: fail # co19-roll r546: Please triage this failure
|
| -Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail # co19-roll r546: Please triage this failure
|
| -Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A06_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A06_t02: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A06_t03: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A06_t04: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A06_t05: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A07_t01: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A07_t02: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A07_t03: fail # co19-roll r546: Please triage this failure
|
| -Language/15_Types/3_Type_Declarations/1_Typedef_A07_t04: fail # co19-roll r546: Please triage this failure
|
| Language/15_Types/4_Interface_Types_A11_t01: crash # co19-roll r546: Please triage this failure
|
| Language/15_Types/4_Interface_Types_A11_t02: crash # co19-roll r546: Please triage this failure
|
| Language/15_Types/4_Interface_Types_A11_t04: fail # co19-roll r546: Please triage this failure
|
| Language/15_Types/4_Interface_Types_A12_t10: fail # co19-roll r546: Please triage this failure
|
| -Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: fail # co19-roll r546: Please triage this failure
|
| -Language/16_Reference/1_Lexical_Rules_A02_t06: fail # co19-roll r546: Please triage this failure
|
| LibTest/core/DateTime/DateTime_A01_t03: fail # co19-roll r546: Please triage this failure
|
| LibTest/core/DateTime/parse_A03_t01: fail # co19-roll r546: Please triage this failure
|
| LibTest/core/Duration/operator_div_A01_t01: fail # co19-roll r546: Please triage this failure
|
|
|