OLD | NEW |
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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 | 160 |
161 # Test makes unjustified assumptions about the number of calls to SortCompare. | 161 # Test makes unjustified assumptions about the number of calls to SortCompare. |
162 # Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=596 | 162 # Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=596 |
163 'bug_596_1': [PASS, FAIL_OK], | 163 'bug_596_1': [PASS, FAIL_OK], |
164 | 164 |
165 # Tests do not return boolean. | 165 # Tests do not return boolean. |
166 '15.2.3.14-1-1': [PASS, FAIL_OK], | 166 '15.2.3.14-1-1': [PASS, FAIL_OK], |
167 '15.2.3.14-1-2': [PASS, FAIL_OK], | 167 '15.2.3.14-1-2': [PASS, FAIL_OK], |
168 '15.2.3.14-1-3': [PASS, FAIL_OK], | 168 '15.2.3.14-1-3': [PASS, FAIL_OK], |
169 | 169 |
| 170 # String.prototype.contains renamed to 'S.p.includes' |
| 171 'String.prototype.contains_FailBadLocation' : [FAIL_OK], |
| 172 'String.prototype.contains_FailLocation' : [FAIL_OK], |
| 173 'String.prototype.contains_FailMissingLetter' : [FAIL_OK], |
| 174 'String.prototype.contains_lengthProp' : [FAIL_OK], |
| 175 'String.prototype.contains_Success' : [FAIL_OK], |
| 176 'String.prototype.contains_SuccessNoLocation' : [FAIL_OK], |
| 177 |
| 178 |
170 ############################ SKIPPED TESTS ############################# | 179 ############################ SKIPPED TESTS ############################# |
171 | 180 |
172 # These tests take a looong time to run in debug mode. | 181 # These tests take a looong time to run in debug mode. |
173 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]], | 182 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]], |
174 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]], | 183 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]], |
175 }], # ALWAYS | 184 }], # ALWAYS |
176 | 185 |
177 ['system == macos', { | 186 ['system == macos', { |
178 '11.3.2_TRP': [FAIL], | 187 '11.3.2_TRP': [FAIL], |
179 '9.2.5_11_g_ii_2': [FAIL], | 188 '9.2.5_11_g_ii_2': [FAIL], |
180 }], # system == macos | 189 }], # system == macos |
181 | 190 |
182 ['arch == arm or arch == mipsel or arch == mips or arch == arm64 or arch == mips
64el', { | 191 ['arch == arm or arch == mipsel or arch == mips or arch == arm64 or arch == mips
64el', { |
183 | 192 |
184 # TODO(mstarzinger): Causes stack overflow on simulators due to eager | 193 # TODO(mstarzinger): Causes stack overflow on simulators due to eager |
185 # compilation of parenthesized function literals. Needs investigation. | 194 # compilation of parenthesized function literals. Needs investigation. |
186 'S13.2.1_A1_T1': [SKIP], | 195 'S13.2.1_A1_T1': [SKIP], |
187 | 196 |
188 # BUG(3251225): Tests that timeout with --nocrankshaft. | 197 # BUG(3251225): Tests that timeout with --nocrankshaft. |
189 'S15.1.3.1_A2.4_T1': [SKIP], | 198 'S15.1.3.1_A2.4_T1': [SKIP], |
190 'S15.1.3.1_A2.5_T1': [SKIP], | 199 'S15.1.3.1_A2.5_T1': [SKIP], |
191 'S15.1.3.2_A2.4_T1': [SKIP], | 200 'S15.1.3.2_A2.4_T1': [SKIP], |
192 'S15.1.3.2_A2.5_T1': [SKIP], | 201 'S15.1.3.2_A2.5_T1': [SKIP], |
193 'S15.1.3.3_A2.3_T1': [SKIP], | 202 'S15.1.3.3_A2.3_T1': [SKIP], |
194 'S15.1.3.4_A2.3_T1': [SKIP], | 203 'S15.1.3.4_A2.3_T1': [SKIP], |
195 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 204 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
196 ] | 205 ] |
OLD | NEW |