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

Side by Side Diff: dart/tests/co19/co19-leg.status

Issue 9562006: No IntegerDivisionByZeroException in Leg (as it only has doubles). Also fix a rounding issue. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: changes Created 8 years, 9 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 | « dart/frog/leg/lib/js_helper.dart ('k') | dart/tests/language/language-leg.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) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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 prefix co19 5 prefix co19
6 6
7 [ $component == leg && $system == macos ] 7 [ $component == leg && $system == macos ]
8 LibTest/core/Math/acos_A01_t01: Fail 8 LibTest/core/Math/acos_A01_t01: Fail
9 LibTest/core/Math/asin_A01_t01: Fail 9 LibTest/core/Math/asin_A01_t01: Fail
10 LibTest/core/Math/atan_A01_t01: Fail 10 LibTest/core/Math/atan_A01_t01: Fail
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 LibTest/core/Math/parseInt_A01_t01: Fail, OK # Requires big int. 58 LibTest/core/Math/parseInt_A01_t01: Fail, OK # Requires big int.
59 LibTest/core/Math/pow_A01_t01: Fail, OK # Bad test (uses x.pow(y), not Math.pow( x, y)). 59 LibTest/core/Math/pow_A01_t01: Fail, OK # Bad test (uses x.pow(y), not Math.pow( x, y)).
60 LibTest/core/Math/pow_A11_t01: Fail, OK # TODO(floitsch): Review. 60 LibTest/core/Math/pow_A11_t01: Fail, OK # TODO(floitsch): Review.
61 LibTest/core/Math/pow_A13_t01: Fail, OK # TODO(floitsch): Review. 61 LibTest/core/Math/pow_A13_t01: Fail, OK # TODO(floitsch): Review.
62 LibTest/core/Math/sin_A01_t01: Fail, OK # TODO(floitsch): Review. 62 LibTest/core/Math/sin_A01_t01: Fail, OK # TODO(floitsch): Review.
63 LibTest/core/Math/tan_A01_t01: Fail, OK # TODO(floitsch): Review. 63 LibTest/core/Math/tan_A01_t01: Fail, OK # TODO(floitsch): Review.
64 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: Fa il, OK # This is not rejected by V8. 64 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: Fa il, OK # This is not rejected by V8.
65 LibTest/core/RegExp/allMatches_A01_t01: Fail, OK # Bad test, allMatches return an Iterable. 65 LibTest/core/RegExp/allMatches_A01_t01: Fail, OK # Bad test, allMatches return an Iterable.
66 LibTest/core/RegExp/firstMatch_A01_t01: Fail, OK # Bad test, use Match.regexp, n ot Match.pattern. 66 LibTest/core/RegExp/firstMatch_A01_t01: Fail, OK # Bad test, use Match.regexp, n ot Match.pattern.
67 LibTest/core/String/hashCode_A01_t01: Fail, OK # Bad test closurizes hashCode. 67 LibTest/core/String/hashCode_A01_t01: Fail, OK # Bad test closurizes hashCode.
68 LibTest/core/double/operator_truncating_division_A01_t06: Fail, OK # Conflicts w ith int semantics. 68 LibTest/core/double/toInt_A01_t01: Fail, OK # Requires big int.
69 LibTest/core/double/toInt_A01_t02: Fail, OK # Requires big int.
70 LibTest/core/double/toInt_A01_t05: Fail, OK # Requires big int.
69 LibTest/core/double/toRadixString_A01_t01: Fail, OK # Unimplemented test stub. 71 LibTest/core/double/toRadixString_A01_t01: Fail, OK # Unimplemented test stub.
70 LibTest/core/double/toStringAsExponential_A01_t01: Fail, OK # Unimplemented test stub. 72 LibTest/core/double/toStringAsExponential_A01_t01: Fail, OK # Unimplemented test stub.
71 LibTest/core/double/toStringAsPrecision_A01_t01: Fail, OK # Unimplemented test s tub. 73 LibTest/core/double/toStringAsPrecision_A01_t01: Fail, OK # Unimplemented test s tub.
72 LibTest/core/int/compareTo_A01_t01: Fail, OK # Requires big int. 74 LibTest/core/int/compareTo_A01_t01: Fail, OK # Requires big int.
73 LibTest/core/int/hashCode_A01_t01: Fail, OK # co19 testing missing assertion. 75 LibTest/core/int/hashCode_A01_t01: Fail, OK # co19 testing missing assertion.
74 LibTest/core/int/isEven_A01_t01: Fail, OK # Not in API. 76 LibTest/core/int/isEven_A01_t01: Fail, OK # Not in API.
75 LibTest/core/int/isOdd_A01_t01: Fail, OK # Not in API. 77 LibTest/core/int/isOdd_A01_t01: Fail, OK # Not in API.
76 LibTest/core/int/operator_NOT_A01_t01: Fail, OK # Requires big int. 78 LibTest/core/int/operator_NOT_A01_t01: Fail, OK # Requires big int.
77 LibTest/core/int/operator_left_shift_A01_t01: Fail, OK # Requires big int. 79 LibTest/core/int/operator_left_shift_A01_t01: Fail, OK # Requires big int.
80 LibTest/core/int/operator_remainder_A01_t03: Fail, OK # Leg only has double.
78 LibTest/core/int/operator_truncating_division_A01_t01: Fail, OK # Requires big i nt. 81 LibTest/core/int/operator_truncating_division_A01_t01: Fail, OK # Requires big i nt.
82 LibTest/core/int/operator_truncating_division_A01_t02: Fail, OK # Leg only has d ouble.
83 LibTest/core/int/remainder_A01_t01: Fail, OK # Requires big int.
84 LibTest/core/int/remainder_A01_t03: Fail, OK # Leg only has double.
85 LibTest/core/int/toDouble_A01_t01: Fail, OK # Requires big int.
86 LibTest/core/int/toInt_A01_t01: Fail, OK # Requires big int.
87 LibTest/core/int/toRadixString_A01_t01: Fail, OK # Bad test: uses Expect.fail, E xpect.throws, assumes case of result, and uses unsupported radixes.
79 88
80 89
81 LibTest/core/int/remainder_A01_t01: Fail, OK # TODO(floitsch): Review.
82 LibTest/core/int/remainder_A01_t02: Fail, OK # TODO(floitsch): Review.
83 LibTest/core/int/toInt_A01_t01: Fail, OK # Requires big int.
84 LibTest/core/int/toStringAsExponential_A01_t01: Fail, OK # TODO(floitsch): Revie w. 90 LibTest/core/int/toStringAsExponential_A01_t01: Fail, OK # TODO(floitsch): Revie w.
85 LibTest/core/int/toStringAsFixed_A01_t01: Fail, OK # TODO(floitsch): Review. 91 LibTest/core/int/toStringAsFixed_A01_t01: Fail, OK # TODO(floitsch): Review.
86 LibTest/core/int/toStringAsPrecision_A01_t01: Fail, OK # TODO(floitsch): Review. 92 LibTest/core/int/toStringAsPrecision_A01_t01: Fail, OK # TODO(floitsch): Review.
87 LibTest/core/double/operator_remainder_A01_t02: Fail, OK # VM handling of double literals.
88 LibTest/core/double/operator_remainder_A01_t03: Fail, OK # VM handling of double literals.
89 LibTest/core/double/operator_remainder_A01_t05: Fail, OK # VM handling of double literals.
90 LibTest/core/double/operator_truncating_division_A01_t01: Fail, OK # VM handling of double literals.
91 LibTest/core/double/operator_truncating_division_A01_t05: Fail, OK # VM handling of double literals.
92 LibTest/core/double/remainder_A01_t02: Fail, OK # VM handling of double literals .
93 LibTest/core/double/remainder_A01_t03: Fail, OK # VM handling of double literals .
94 LibTest/core/double/remainder_A01_t05: Fail, OK # VM handling of double literals .
95 LibTest/core/double/round_A01_t01: Fail, OK # VM handling of double literals.
96 LibTest/core/double/toInt_A01_t01: Fail, OK # VM handling of double literals.
97 LibTest/core/double/toInt_A01_t02: Fail, OK # VM handling of double literals.
98 LibTest/core/double/toInt_A01_t05: Fail, OK # VM handling of double literals.
99 93
100 94
101 LangGuideTest/02_Language_Constructs/02_11_Exceptions/02_11_Exceptions_A08_t04: Fail # SsaBuilder.visitContinueStatement not implemented 95 LangGuideTest/02_Language_Constructs/02_11_Exceptions/02_11_Exceptions_A08_t04: Fail # SsaBuilder.visitContinueStatement not implemented
102 LangGuideTest/02_Language_Constructs/02_11_Exceptions/02_11_Exceptions_A09_t04: Fail # SsaBuilder.visitContinueStatement not implemented 96 LangGuideTest/02_Language_Constructs/02_11_Exceptions/02_11_Exceptions_A09_t04: Fail # SsaBuilder.visitContinueStatement not implemented
103 LangGuideTest/02_Language_Constructs/02_5_Meaning_of_Names/02_5_Meaning_of_Names _A02_t01: Fail # SsaBuilder.visitIdentifier on non-this 97 LangGuideTest/02_Language_Constructs/02_5_Meaning_of_Names/02_5_Meaning_of_Names _A02_t01: Fail # SsaBuilder.visitIdentifier on non-this
104 Language/06_Functions/06_Functions_A01_t04: Fail # switch cases are not implemen ted 98 Language/06_Functions/06_Functions_A01_t04: Fail # switch cases are not implemen ted
105 Language/06_Functions/2_Formal_Parameters/2_Named_Optional_Formals_A01_t01: Fail # CompileTimeConstantHandler non-primitive list-entries not implemented 99 Language/06_Functions/2_Formal_Parameters/2_Named_Optional_Formals_A01_t01: Fail # CompileTimeConstantHandler non-primitive list-entries not implemented
106 Language/07_Classes/8_Superclasses/1_Inheritance_and_Overriding_A02_t03: Fail # SsaBuilder.visitIdentifier on non-this 100 Language/07_Classes/8_Superclasses/1_Inheritance_and_Overriding_A02_t03: Fail # SsaBuilder.visitIdentifier on non-this
107 Language/13_Types/5_Function_Types_A02_t03: Fail # Cannot find value 101 Language/13_Types/5_Function_Types_A02_t03: Fail # Cannot find value
108 LibTest/core/Date/Date.fromEpoch_A01_t02: Fail # Expect.fail('Exception expected with the passed null value of the timeZone') 102 LibTest/core/Date/Date.fromEpoch_A01_t02: Fail # Expect.fail('Exception expected with the passed null value of the timeZone')
109 LibTest/core/Date/Date.fromString_A05_t01: Fail # Expect.fail('Some exception is expected') 103 LibTest/core/Date/Date.fromString_A05_t01: Fail # Expect.fail('Some exception is expected')
110 LibTest/core/Expect/throws_A02_t01: Fail # Bad code generation. 104 LibTest/core/Expect/throws_A02_t01: Fail # Bad code generation.
111 LibTest/core/FallThroughError/toString_A01_t02: Fail # switch cases are not impl emented 105 LibTest/core/FallThroughError/toString_A01_t02: Fail # switch cases are not impl emented
112 LibTest/core/Isolate/port_A01_t01: Fail # Cannot find value 106 LibTest/core/Isolate/port_A01_t01: Fail # Cannot find value
113 LibTest/core/Isolate/spawn_A01_t01: Fail # Cannot find value 107 LibTest/core/Isolate/spawn_A01_t01: Fail # Cannot find value
114 LibTest/core/Isolate/spawn_A01_t03: Fail # Cannot find value 108 LibTest/core/Isolate/spawn_A01_t03: Fail # Cannot find value
115 LibTest/core/Match/str_A01_t01: Fail # NoSuchMethodException : method not found: 'get length' 109 LibTest/core/Match/str_A01_t01: Fail # NoSuchMethodException : method not found: 'get length'
116 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: F ail # switch cases are not implemented 110 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: F ail # switch cases are not implemented
117 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A04_t01: F ail # switch cases are not implemented 111 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A04_t01: F ail # switch cases are not implemented
118 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A05_t01: F ail # switch cases are not implemented 112 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A05_t01: F ail # switch cases are not implemented
119 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A06_t01: F ail # switch cases are not implemented 113 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A06_t01: F ail # switch cases are not implemented
120 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterEscape_A06_t02: Fail # SsaBuilder.visitContinueStatement not implemented 114 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterEscape_A06_t02: Fail # SsaBuilder.visitContinueStatement not implemented
121 LibTest/core/RegExp/Pattern_semantics/firstMatch_DecimalEscape_A01_t02: Fail # E xpect.fail('Some exception expected') 115 LibTest/core/RegExp/Pattern_semantics/firstMatch_DecimalEscape_A01_t02: Fail # E xpect.fail('Some exception expected')
122 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: Fa il # Expect.fail('Some exception expected') 116 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: Fa il # Expect.fail('Some exception expected')
123 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: Fa il # Expect.fail('Some exception expected') 117 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: Fa il # Expect.fail('Some exception expected')
124 LibTest/core/int/toRadixString_A01_t01: Fail # Expect.stringEquals(expected: <6A >, <6a>) fails
125 118
126 119
127 LibTest/core/Math/parseDouble_A02_t01: Fail # TODO(ahe): Reject bad values. 120 LibTest/core/Math/parseDouble_A02_t01: Fail # TODO(ahe): Reject bad values.
128 LibTest/core/Queue/iterator_A01_t01: Fail # Implement is-checks. 121 LibTest/core/Queue/iterator_A01_t01: Fail # Implement is-checks.
129 122
130 123
131 LibTest/core/String/String_class_A02_t01: Fail # Unhandled non-BMP character: U+ 10000. 124 LibTest/core/String/String_class_A02_t01: Fail # Unhandled non-BMP character: U+ 10000.
132 LibTest/core/String/charCodeAt_A01_t01: Fail # Unhandled non-BMP character: U+10 000. 125 LibTest/core/String/charCodeAt_A01_t01: Fail # Unhandled non-BMP character: U+10 000.
133 LibTest/core/String/charCodes_A01_t01: Fail # Unhandled non-BMP character: U+100 00. 126 LibTest/core/String/charCodes_A01_t01: Fail # Unhandled non-BMP character: U+100 00.
134 127
135 128
136 # TODO(floitsch): Please review these. 129 # TODO(floitsch): Please review these.
137 LibTest/core/Expect/identical_A01_t01: Fail # Is NaN identical to NaN? 130 LibTest/core/Expect/identical_A01_t01: Fail # Is NaN identical to NaN?
138 131
139 132
140 LangGuideTest/02_Language_Constructs/02_1_Class/02_1_Class_Canonicalization/02_1 _Class_Canonicalization_A01_t02: Fail # Expect.isTrue(false) fails. 133 LangGuideTest/02_Language_Constructs/02_1_Class/02_1_Class_Canonicalization/02_1 _Class_Canonicalization_A01_t02: Fail # Expect.isTrue(false) fails.
141 LangGuideTest/02_Language_Constructs/02_1_Class/02_1_Class_Canonicalization/02_1 _Class_Canonicalization_A01_t03: Fail # Expect.isTrue(false) fails. 134 LangGuideTest/02_Language_Constructs/02_1_Class/02_1_Class_Canonicalization/02_1 _Class_Canonicalization_A01_t03: Fail # Expect.isTrue(false) fails.
142 LangGuideTest/05_Equality/05_1_Object_Identity_Equality/05_1_Object_Identity_Equ ality_A01_t01: Fail # Expect.isTrue(false) fails. 135 LangGuideTest/05_Equality/05_1_Object_Identity_Equality/05_1_Object_Identity_Equ ality_A01_t01: Fail # Expect.isTrue(false) fails.
143 LangGuideTest/05_Equality/05_1_Object_Identity_Equality/05_1_Object_Identity_Equ ality_A01_t03: Fail # Expect.isTrue(false) fails. 136 LangGuideTest/05_Equality/05_1_Object_Identity_Equality/05_1_Object_Identity_Equ ality_A01_t03: Fail # Expect.isTrue(false) fails.
144 LangGuideTest/05_Equality/05_2_Value_Equality/05_2_Value_Equality_A01_t01: Fail # Expect.isTrue(false) fails. 137 LangGuideTest/05_Equality/05_2_Value_Equality/05_2_Value_Equality_A01_t01: Fail # Expect.isTrue(false) fails.
145 Language/13_Types/4_Interface_Types_A12_t09: Fail # Expect.isFalse(true) fails. 138 Language/13_Types/4_Interface_Types_A12_t09: Fail # Expect.isFalse(true) fails.
146 Language/13_Types/4_Interface_Types_A12_t12: Fail # Expect.isFalse(true) fails. 139 Language/13_Types/4_Interface_Types_A12_t12: Fail # Expect.isFalse(true) fails.
147 Language/13_Types/4_Interface_Types_A12_t13: Fail # Expect.isFalse(true) fails. 140 Language/13_Types/4_Interface_Types_A12_t13: Fail # Expect.isFalse(true) fails.
148 Language/13_Types/4_Interface_Types_A12_t14: Fail # Expect.isFalse(true) fails. 141 Language/13_Types/4_Interface_Types_A12_t14: Fail # Expect.isFalse(true) fails.
149 Language/13_Types/4_Interface_Types_A12_t16: Fail # Expect.isFalse(true) fails. 142 Language/13_Types/4_Interface_Types_A12_t16: Fail # Expect.isFalse(true) fails.
150 Language/13_Types/5_Function_Types_A02_t01: Fail # Expect.isTrue(false) fails. 143 Language/13_Types/5_Function_Types_A02_t01: Fail # Expect.isTrue(false) fails.
151 Language/13_Types/5_Function_Types_A02_t02: Fail # Expect.isTrue(false) fails. 144 Language/13_Types/5_Function_Types_A02_t02: Fail # Expect.isTrue(false) fails.
152 LibTest/core/Object/operator_equality_A01_t01: Fail # Expect.isTrue(false) fails . 145 LibTest/core/Object/operator_equality_A01_t01: Fail # Expect.isTrue(false) fails .
153 LibTest/core/String/contains_A01_t02: Fail # Expect.fail('IndexOutOfRangeExcepti on expected!') 146 LibTest/core/String/contains_A01_t02: Fail # Expect.fail('IndexOutOfRangeExcepti on expected!')
154 LibTest/core/int/toDouble_A01_t01: Fail # Expect.equals(expected: <Infinity>, ac tual: <1>) fails
155 147
156 148
157 LangGuideTest/02_Language_Constructs/02_11_Exceptions/02_11_Exceptions_A04_t01: Fail # ReferenceError: trace is not defined 149 LangGuideTest/02_Language_Constructs/02_11_Exceptions/02_11_Exceptions_A04_t01: Fail # ReferenceError: trace is not defined
158 Language/13_Types/4_Interface_Types_A12_t10: Fail # SyntaxError: Unexpected iden tifier 150 Language/13_Types/4_Interface_Types_A12_t10: Fail # SyntaxError: Unexpected iden tifier
159 Language/07_Classes/5_Constructors/1_Generative_Constructors_A01_t01: Fail # Syn taxError: Unexpected string 151 Language/07_Classes/5_Constructors/1_Generative_Constructors_A01_t01: Fail # Syn taxError: Unexpected string
160 152
161 153
162 LangGuideTest/02_Language_Constructs/02_8_Static_Methods/02_8_Static_Methods_A02 _t02: Fail # cannot resolve foo 154 LangGuideTest/02_Language_Constructs/02_8_Static_Methods/02_8_Static_Methods_A02 _t02: Fail # cannot resolve foo
163 Language/13_Types/4_Interface_Types_A07_t01: Fail # cannot resolve type Dynamic 155 Language/13_Types/4_Interface_Types_A07_t01: Fail # cannot resolve type Dynamic
164 Language/13_Types/4_Interface_Types_A07_t02: Fail # cannot resolve type Dynamic 156 Language/13_Types/4_Interface_Types_A07_t02: Fail # cannot resolve type Dynamic
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 Language/08_Interfaces/Interfaces_A02_t03: Fail, OK # @compile-error 495 Language/08_Interfaces/Interfaces_A02_t03: Fail, OK # @compile-error
504 Language/08_Interfaces/Interfaces_A02_t04: Fail, OK # @compile-error 496 Language/08_Interfaces/Interfaces_A02_t04: Fail, OK # @compile-error
505 Language/08_Interfaces/Interfaces_A02_t05: Fail, OK # @compile-error 497 Language/08_Interfaces/Interfaces_A02_t05: Fail, OK # @compile-error
506 Language/09_Generics/09_Generics_A01_t05: Fail, OK # @compile-error 498 Language/09_Generics/09_Generics_A01_t05: Fail, OK # @compile-error
507 Language/09_Generics/09_Generics_A01_t08: Fail, OK # @compile-error 499 Language/09_Generics/09_Generics_A01_t08: Fail, OK # @compile-error
508 Language/09_Generics/09_Generics_A01_t10: Fail, OK # @compile-error 500 Language/09_Generics/09_Generics_A01_t10: Fail, OK # @compile-error
509 Language/09_Generics/09_Generics_A01_t11: Fail, OK # @compile-error 501 Language/09_Generics/09_Generics_A01_t11: Fail, OK # @compile-error
510 Language/09_Generics/09_Generics_A04_t05: Fail, OK # @compile-error 502 Language/09_Generics/09_Generics_A04_t05: Fail, OK # @compile-error
511 Language/13_Types/1_Static_Types_A02_t08: Fail, OK # @compile-error 503 Language/13_Types/1_Static_Types_A02_t08: Fail, OK # @compile-error
512 Language/13_Types/7_Type_Void_A01_t09: Fail, OK # @compile-error 504 Language/13_Types/7_Type_Void_A01_t09: Fail, OK # @compile-error
OLDNEW
« no previous file with comments | « dart/frog/leg/lib/js_helper.dart ('k') | dart/tests/language/language-leg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698