| 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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 prefix sputnik | 28 prefix sputnik |
| 29 def FAIL_OK = FAIL, OKAY | 29 def FAIL_OK = FAIL, OKAY |
| 30 | 30 |
| 31 ############################### BUGS ################################### | 31 ############################### BUGS ################################### |
| 32 | 32 |
| 33 # A bound function should fail on access to 'caller' and 'arguments'. | 33 # A bound function should fail on access to 'caller' and 'arguments'. |
| 34 S15.3.4.5_A1: FAIL | 34 S15.3.4.5_A1: FAIL |
| 35 S15.3.4.5_A2: FAIL | 35 S15.3.4.5_A2: FAIL |
| 36 | 36 |
| 37 # String replace and array sort leaks the global object to strict mode | |
| 38 # callbacks. | |
| 39 S15.5.4.11_A12: FAIL | |
| 40 S15.4.4.11_A8: FAIL | |
| 41 | |
| 42 # '__proto__' should be treated as a normal property in JSON. | 37 # '__proto__' should be treated as a normal property in JSON. |
| 43 S15.12.2_A1: FAIL | 38 S15.12.2_A1: FAIL |
| 44 | 39 |
| 45 ##################### DELIBERATE INCOMPATIBILITIES ##################### | 40 ##################### DELIBERATE INCOMPATIBILITIES ##################### |
| 46 | 41 |
| 47 # This tests precision of trignometric functions. We're slightly off | 42 # This tests precision of trignometric functions. We're slightly off |
| 48 # from the implementation in libc (~ 1e-17) but it's not clear if we | 43 # from the implementation in libc (~ 1e-17) but it's not clear if we |
| 49 # or they are closer to the right answer, or if it even matters. | 44 # or they are closer to the right answer, or if it even matters. |
| 50 S15.8.2.16_A7: PASS || FAIL_OK | 45 S15.8.2.16_A7: PASS || FAIL_OK |
| 51 S15.8.2.18_A7: PASS || FAIL_OK | 46 S15.8.2.18_A7: PASS || FAIL_OK |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 S15.1.3.2_A2.5_T1: SKIP | 254 S15.1.3.2_A2.5_T1: SKIP |
| 260 S15.1.3.3_A2.3_T1: SKIP | 255 S15.1.3.3_A2.3_T1: SKIP |
| 261 S15.1.3.4_A2.3_T1: SKIP | 256 S15.1.3.4_A2.3_T1: SKIP |
| 262 S15.1.3.1_A2.5_T1: SKIP | 257 S15.1.3.1_A2.5_T1: SKIP |
| 263 S15.1.3.2_A2.5_T1: SKIP | 258 S15.1.3.2_A2.5_T1: SKIP |
| 264 | 259 |
| 265 [ $arch == mips ] | 260 [ $arch == mips ] |
| 266 | 261 |
| 267 # Skip all tests on MIPS. | 262 # Skip all tests on MIPS. |
| 268 *: SKIP | 263 *: SKIP |
| OLD | NEW |