OLD | NEW |
1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 | 168 |
169 # Allow keywords as names of properties in object initialisers and | 169 # Allow keywords as names of properties in object initialisers and |
170 # in dot-notation property access. | 170 # in dot-notation property access. |
171 S11.1.5_A4.1: FAIL_OK | 171 S11.1.5_A4.1: FAIL_OK |
172 S11.1.5_A4.2: FAIL_OK | 172 S11.1.5_A4.2: FAIL_OK |
173 | 173 |
174 # Don't throw type errors when iterating through the undefined object. | 174 # Don't throw type errors when iterating through the undefined object. |
175 S9.9_A1: FAIL_OK | 175 S9.9_A1: FAIL_OK |
176 S9.9_A2: FAIL_OK | 176 S9.9_A2: FAIL_OK |
177 | 177 |
| 178 # Calls builtins without an explicit receiver which means that |
| 179 # undefined is passed to the builtin. The tests expect the global |
| 180 # object to be passed which was true in ES3 but not in ES5. |
| 181 S11.1.1_A2: FAIL_OK |
| 182 S15.5.4.4_A1_T3: FAIL_OK |
| 183 S15.5.4.5_A1_T3: FAIL_OK |
| 184 S15.5.4.6_A1_T3: FAIL_OK |
| 185 S15.5.4.7_A1_T3: FAIL_OK |
| 186 S15.5.4.8_A1_T3: FAIL_OK |
| 187 S15.5.4.9_A1_T3: FAIL_OK |
| 188 S15.5.4.10_A1_T3: FAIL_OK |
| 189 S15.5.4.11_A1_T3: FAIL_OK |
| 190 S15.5.4.12_A1_T3: FAIL_OK |
| 191 S15.5.4.13_A1_T3: FAIL_OK |
| 192 S15.5.4.14_A1_T3: FAIL_OK |
| 193 S15.5.4.15_A1_T3: FAIL_OK |
| 194 |
178 ##################### SKIPPED TESTS ##################### | 195 ##################### SKIPPED TESTS ##################### |
179 | 196 |
180 # These tests take a looong time to run in debug mode. | 197 # These tests take a looong time to run in debug mode. |
181 S15.1.3.2_A2.5_T1: PASS, SKIP if $mode == debug | 198 S15.1.3.2_A2.5_T1: PASS, SKIP if $mode == debug |
182 S15.1.3.1_A2.5_T1: PASS, SKIP if $mode == debug | 199 S15.1.3.1_A2.5_T1: PASS, SKIP if $mode == debug |
183 | 200 |
184 # V8 Bug: http://code.google.com/p/v8/issues/detail?id=1196 | 201 # V8 Bug: http://code.google.com/p/v8/issues/detail?id=1196 |
185 S8.7_A5_T2: FAIL | 202 S8.7_A5_T2: FAIL |
186 | 203 |
187 # Invalid test case (recent change adding var changes semantics) | 204 # Invalid test case (recent change adding var changes semantics) |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 S15.1.3.2_A2.5_T1: SKIP | 268 S15.1.3.2_A2.5_T1: SKIP |
252 S15.1.3.3_A2.3_T1: SKIP | 269 S15.1.3.3_A2.3_T1: SKIP |
253 S15.1.3.4_A2.3_T1: SKIP | 270 S15.1.3.4_A2.3_T1: SKIP |
254 S15.1.3.1_A2.5_T1: SKIP | 271 S15.1.3.1_A2.5_T1: SKIP |
255 S15.1.3.2_A2.5_T1: SKIP | 272 S15.1.3.2_A2.5_T1: SKIP |
256 | 273 |
257 [ $arch == mips ] | 274 [ $arch == mips ] |
258 | 275 |
259 # Skip all tests on MIPS. | 276 # Skip all tests on MIPS. |
260 *: SKIP | 277 *: SKIP |
OLD | NEW |