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

Side by Side Diff: test/test262-es6/test262-es6.status

Issue 474423003: Activate --harmony switch on test262-es6 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | test/test262-es6/testcfg.py » ('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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 20 matching lines...) Expand all
31 31
32 '15.5.4.9_CE': [['no_i18n', SKIP]], 32 '15.5.4.9_CE': [['no_i18n', SKIP]],
33 33
34 # TODO(turbofan): Timeouts on TurboFan need investigation. 34 # TODO(turbofan): Timeouts on TurboFan need investigation.
35 '10.1.1_13': [PASS, NO_VARIANTS], 35 '10.1.1_13': [PASS, NO_VARIANTS],
36 36
37 # BUG(v8:3455) 37 # BUG(v8:3455)
38 '11.2.3_b': [FAIL], 38 '11.2.3_b': [FAIL],
39 '12.2.3_b': [FAIL], 39 '12.2.3_b': [FAIL],
40 40
41 ###################### NEEDS INVESTIGATION (2014) ####################### 41 ###################### NEEDS INVESTIGATION #######################
42
43 # Cause unknown.
44 'bug_596_1': [FAIL],
45
46 # New ES6 Array functions.
47 'S22.1.2.1_T1': [FAIL],
48 'S22.1.2.1_T2': [FAIL],
49 'S22.1.2.3_T1': [FAIL],
50 'S22.1.2.3_T2': [FAIL],
51 'S22.1.3.6_T1': [FAIL],
52
53 # New ES6 function String.prototype.contains, unimplemented in v8.
54 'String.prototype.contains_FailBadLocation': [FAIL],
55 'String.prototype.contains_FailLocation': [FAIL],
56 'String.prototype.contains_FailMissingLetter': [FAIL],
57 'String.prototype.contains_Success': [FAIL],
58 'String.prototype.contains_SuccessNoLocation': [FAIL],
59 'String.prototype.contains_lengthProp': [FAIL],
60
61 # New ES6 function String.prototype.endsWith, unimplemented in v8.
62 'String.prototype.endsWith_Fail': [FAIL],
63 'String.prototype.endsWith_Fail_2': [FAIL],
64 'String.prototype.endsWith_Success': [FAIL],
65 'String.prototype.endsWith_Success_2': [FAIL],
66 'String.prototype.endsWith_Success_3': [FAIL],
67 'String.prototype.endsWith_Success_4': [FAIL],
68
69 # New ES6 function Array.prototype.find, unimplemented in v8.
70 'Array.prototype.find_callable-predicate': [FAIL],
71 'Array.prototype.find_empty-array-undefined': [FAIL],
72 'Array.prototype.find_length-property': [FAIL],
73 'Array.prototype.find_modify-after-start': [FAIL],
74 'Array.prototype.find_non-returning-predicate': [FAIL],
75 'Array.prototype.find_predicate-arguments': [FAIL],
76 'Array.prototype.find_push-after-start': [FAIL],
77 'Array.prototype.find_remove-after-start': [FAIL],
78 'Array.prototype.find_return-found-value': [FAIL],
79 'Array.prototype.find_skip-empty': [FAIL],
80 'Array.prototype.find_this-defined': [FAIL],
81 'Array.prototype.find_this-is-object': [FAIL],
82 'Array.prototype.find_this-undefined': [FAIL],
83
84 # This negative test fails for the wrong reason.
85 #'Array.prototype.find_noncallable-predicate': [FAIL],
86 42
87 # Possibly same cause as S8.5_A2.1, below: floating-point tests. 43 # Possibly same cause as S8.5_A2.1, below: floating-point tests.
88 'S15.8.2.16_A7': [PASS, FAIL_OK], 44 'S15.8.2.16_A7': [PASS, FAIL_OK],
89 'S15.8.2.18_A7': [PASS, FAIL_OK], 45 'S15.8.2.18_A7': [PASS, FAIL_OK],
90 'S15.8.2.7_A7': [PASS, FAIL_OK], 46 'S15.8.2.7_A7': [PASS, FAIL_OK],
91 47
92 # This is an incompatibility between ES5 and V8 on enumerating 48 # This is an incompatibility between ES5 and V8 on enumerating
93 # shadowed elements in a for..in loop. 49 # shadowed elements in a for..in loop.
94 # https://code.google.com/p/v8/issues/detail?id=705 50 # https://code.google.com/p/v8/issues/detail?id=705
95 '12.6.4-2': [PASS, FAIL_OK], 51 '12.6.4-2': [PASS, FAIL_OK],
96 52
53 ###################### MISSING ES6 FEATURES #######################
54
55 # Array.from
56 'S22.1.2.1_T1': [FAIL],
57 'S22.1.2.1_T2': [FAIL],
58
59 # Direct proxies
60 'Array.prototype.find_callable-predicate': [FAIL],
61
62 ######################## OBSOLETED BY ES6 ###########################
63
64 # ES6 allows duplicate properties
65 '11.1.5-4-4-a-1-s': [FAIL],
66 '11.1.5_4-4-b-1': [FAIL],
67 '11.1.5_4-4-b-2': [FAIL],
68 '11.1.5_4-4-c-1': [FAIL],
69 '11.1.5_4-4-c-2': [FAIL],
70 '11.1.5_4-4-d-1': [FAIL],
71 '11.1.5_4-4-d-2': [FAIL],
72 '11.1.5_4-4-d-3': [FAIL],
73 '11.1.5_4-4-d-4': [FAIL],
74
75 # ES6 allows block-local functions.
76 'Sbp_A1_T1': [FAIL],
77 'Sbp_A2_T1': [FAIL],
78 'Sbp_A2_T2': [FAIL],
79 'Sbp_A3_T1': [FAIL],
80 'Sbp_A3_T2': [FAIL],
81 'Sbp_A4_T1': [FAIL],
82 'Sbp_A4_T2': [FAIL],
83 'Sbp_A5_T1': [PASS], # Test is broken (strict reference to unbound variable)
84 'Sbp_A5_T2': [FAIL],
85
97 ######################## NEEDS INVESTIGATION ########################### 86 ######################## NEEDS INVESTIGATION ###########################
98 87
99 # These test failures are specific to the intl402 suite and need investigation 88 # These test failures are specific to the intl402 suite and need investigation
100 # to be either marked as bugs with issues filed for them or as deliberate 89 # to be either marked as bugs with issues filed for them or as deliberate
101 # incompatibilities if the test cases turn out to be broken or ambiguous. 90 # incompatibilities if the test cases turn out to be broken or ambiguous.
102 '6.2.3': [FAIL], 91 '6.2.3': [FAIL],
103 '9.2.1_2': [FAIL], 92 '9.2.1_2': [FAIL],
104 '9.2.6_2': [FAIL], 93 '9.2.6_2': [FAIL],
105 '10.1.1_a': [FAIL], 94 '10.1.1_a': [FAIL],
106 '10.1.1_19_c': [PASS, FAIL, NO_VARIANTS], 95 '10.1.1_19_c': [PASS, FAIL, NO_VARIANTS],
(...skipping 19 matching lines...) Expand all
126 115
127 'S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise with --fast-math) 116 'S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise with --fast-math)
128 117
129 # Linux for ia32 (and therefore simulators) default to extended 80 bit 118 # Linux for ia32 (and therefore simulators) default to extended 80 bit
130 # floating point formats, so these tests checking 64-bit FP precision fail. 119 # floating point formats, so these tests checking 64-bit FP precision fail.
131 # The other platforms/arch's pass these tests. 120 # The other platforms/arch's pass these tests.
132 # We follow the other major JS engines by keeping this default. 121 # We follow the other major JS engines by keeping this default.
133 'S8.5_A2.1': [PASS, FAIL_OK], 122 'S8.5_A2.1': [PASS, FAIL_OK],
134 'S8.5_A2.2': [PASS, FAIL_OK], 123 'S8.5_A2.2': [PASS, FAIL_OK],
135 124
136 # ES6 allows duplicate properties
137 '11.1.5-4-4-a-1-s': [FAIL],
138 '11.1.5_4-4-b-1': [FAIL],
139 '11.1.5_4-4-b-2': [FAIL],
140 '11.1.5_4-4-c-1': [FAIL],
141 '11.1.5_4-4-c-2': [FAIL],
142 '11.1.5_4-4-d-1': [FAIL],
143 '11.1.5_4-4-d-2': [FAIL],
144 '11.1.5_4-4-d-3': [FAIL],
145 '11.1.5_4-4-d-4': [FAIL],
146
147 ############################ INVALID TESTS ############################# 125 ############################ INVALID TESTS #############################
148 126
149 # The reference value calculated by Test262 is incorrect if you run these 127 # The reference value calculated by Test262 is incorrect if you run these
150 # tests in PST/PDT between first Sunday in March and first Sunday in April. 128 # tests in PST/PDT between first Sunday in March and first Sunday in April.
151 # The DST switch was moved in 2007 whereas Test262 bases the reference value 129 # The DST switch was moved in 2007 whereas Test262 bases the reference value
152 # on 2000. Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293 130 # on 2000. Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293
153 'S15.9.3.1_A5_T1': [PASS, FAIL_OK], 131 'S15.9.3.1_A5_T1': [PASS, FAIL_OK],
154 'S15.9.3.1_A5_T2': [PASS, FAIL_OK], 132 'S15.9.3.1_A5_T2': [PASS, FAIL_OK],
155 'S15.9.3.1_A5_T3': [PASS, FAIL_OK], 133 'S15.9.3.1_A5_T3': [PASS, FAIL_OK],
156 'S15.9.3.1_A5_T4': [PASS, FAIL_OK], 134 'S15.9.3.1_A5_T4': [PASS, FAIL_OK],
157 'S15.9.3.1_A5_T5': [PASS, FAIL_OK], 135 'S15.9.3.1_A5_T5': [PASS, FAIL_OK],
158 'S15.9.3.1_A5_T6': [PASS, FAIL_OK], 136 'S15.9.3.1_A5_T6': [PASS, FAIL_OK],
159 137
138 # Test makes unjustified assumptions about the number of calls to SortCompare.
139 # Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=596
140 'bug_596_1': [PASS, FAIL_OK],
141
160 ############################ SKIPPED TESTS ############################# 142 ############################ SKIPPED TESTS #############################
161 143
162 # These tests take a looong time to run in debug mode. 144 # These tests take a looong time to run in debug mode.
163 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]], 145 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]],
164 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]], 146 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]],
165 }], # ALWAYS 147 }], # ALWAYS
166 148
167 ['system == macos', { 149 ['system == macos', {
168 '11.3.2_TRP': [FAIL], 150 '11.3.2_TRP': [FAIL],
169 '9.2.5_11_g_ii_2': [FAIL], 151 '9.2.5_11_g_ii_2': [FAIL],
170 }], # system == macos 152 }], # system == macos
171 153
172 ['arch == arm or arch == mipsel or arch == mips or arch == arm64 or arch == mips 64el', { 154 ['arch == arm or arch == mipsel or arch == mips or arch == arm64 or arch == mips 64el', {
173 155
174 # TODO(mstarzinger): Causes stack overflow on simulators due to eager 156 # TODO(mstarzinger): Causes stack overflow on simulators due to eager
175 # compilation of parenthesized function literals. Needs investigation. 157 # compilation of parenthesized function literals. Needs investigation.
176 'S13.2.1_A1_T1': [SKIP], 158 'S13.2.1_A1_T1': [SKIP],
177 159
178 # BUG(3251225): Tests that timeout with --nocrankshaft. 160 # BUG(3251225): Tests that timeout with --nocrankshaft.
179 'S15.1.3.1_A2.4_T1': [SKIP], 161 'S15.1.3.1_A2.4_T1': [SKIP],
180 'S15.1.3.1_A2.5_T1': [SKIP], 162 'S15.1.3.1_A2.5_T1': [SKIP],
181 'S15.1.3.2_A2.4_T1': [SKIP], 163 'S15.1.3.2_A2.4_T1': [SKIP],
182 'S15.1.3.2_A2.5_T1': [SKIP], 164 'S15.1.3.2_A2.5_T1': [SKIP],
183 'S15.1.3.3_A2.3_T1': [SKIP], 165 'S15.1.3.3_A2.3_T1': [SKIP],
184 'S15.1.3.4_A2.3_T1': [SKIP], 166 'S15.1.3.4_A2.3_T1': [SKIP],
185 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' 167 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64'
186 ] 168 ]
OLDNEW
« no previous file with comments | « no previous file | test/test262-es6/testcfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698