| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 # Linux and Mac defaults to extended 80 bit floating point format in the FPU. | 177 # Linux and Mac defaults to extended 80 bit floating point format in the FPU. |
| 178 # We follow the other major JS engines by keeping this default. | 178 # We follow the other major JS engines by keeping this default. |
| 179 S8.5_A2.2: PASS, FAIL if $system == linux, FAIL if $system == macos | 179 S8.5_A2.2: PASS, FAIL if $system == linux, FAIL if $system == macos |
| 180 S8.5_A2.1: PASS, FAIL if $system == linux, FAIL if $system == macos | 180 S8.5_A2.1: PASS, FAIL if $system == linux, FAIL if $system == macos |
| 181 | 181 |
| 182 ##################### ES3 TESTS ######################### | 182 ##################### ES3 TESTS ######################### |
| 183 # These tests check for ES3 semantics, and differ from ES5. | 183 # These tests check for ES3 semantics, and differ from ES5. |
| 184 # When we follow ES5 semantics, it's ok to fail the test. | 184 # When we follow ES5 semantics, it's ok to fail the test. |
| 185 | 185 |
| 186 # Allow keywords as names of properties in object initialisers and | 186 # Allow keywords as names of properties in object initialisers and |
| 187 # in dot-notation property access. | 187 # in dot-notation property access. |
| 188 S11.1.5_A4.1: FAIL_OK | 188 S11.1.5_A4.1: FAIL_OK |
| 189 S11.1.5_A4.2: FAIL_OK | 189 S11.1.5_A4.2: FAIL_OK |
| 190 | 190 |
| 191 # Don't throw type errors when iterating through the undefined object. | 191 # Don't throw type errors when iterating through the undefined object. |
| 192 S9.9_A1: FAIL_OK | 192 S9.9_A1: FAIL_OK |
| 193 S9.9_A2: FAIL_OK | 193 S9.9_A2: FAIL_OK |
| 194 | 194 |
| 195 | 195 |
| 196 | 196 |
| 197 ##################### SKIPPED TESTS ##################### | 197 ##################### SKIPPED TESTS ##################### |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 # Regexps have type "function", not "object". | 252 # Regexps have type "function", not "object". |
| 253 S11.4.3_A3.6: FAIL_OK | 253 S11.4.3_A3.6: FAIL_OK |
| 254 S15.10.7_A3_T2: FAIL_OK | 254 S15.10.7_A3_T2: FAIL_OK |
| 255 S15.10.7_A3_T1: FAIL_OK | 255 S15.10.7_A3_T1: FAIL_OK |
| 256 | 256 |
| 257 [ $arch == mips ] | 257 [ $arch == mips ] |
| 258 | 258 |
| 259 # Skip all tests on MIPS. | 259 # Skip all tests on MIPS. |
| 260 *: SKIP | 260 *: SKIP |
| OLD | NEW |