| 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 12 matching lines...) Expand all Loading... |
| 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 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'. | |
| 34 S15.3.4.5_A1: FAIL | |
| 35 S15.3.4.5_A2: FAIL | |
| 36 | |
| 37 # '__proto__' should be treated as a normal property in JSON. | 33 # '__proto__' should be treated as a normal property in JSON. |
| 38 S15.12.2_A1: FAIL | 34 S15.12.2_A1: FAIL |
| 39 | 35 |
| 40 ##################### DELIBERATE INCOMPATIBILITIES ##################### | 36 ##################### DELIBERATE INCOMPATIBILITIES ##################### |
| 41 | 37 |
| 42 # This tests precision of trignometric functions. We're slightly off | 38 # This tests precision of trignometric functions. We're slightly off |
| 43 # from the implementation in libc (~ 1e-17) but it's not clear if we | 39 # from the implementation in libc (~ 1e-17) but it's not clear if we |
| 44 # or they are closer to the right answer, or if it even matters. | 40 # or they are closer to the right answer, or if it even matters. |
| 45 S15.8.2.16_A7: PASS || FAIL_OK | 41 S15.8.2.16_A7: PASS || FAIL_OK |
| 46 S15.8.2.18_A7: PASS || FAIL_OK | 42 S15.8.2.18_A7: PASS || FAIL_OK |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 S15.1.3.2_A2.5_T1: SKIP | 268 S15.1.3.2_A2.5_T1: SKIP |
| 273 S15.1.3.3_A2.3_T1: SKIP | 269 S15.1.3.3_A2.3_T1: SKIP |
| 274 S15.1.3.4_A2.3_T1: SKIP | 270 S15.1.3.4_A2.3_T1: SKIP |
| 275 S15.1.3.1_A2.5_T1: SKIP | 271 S15.1.3.1_A2.5_T1: SKIP |
| 276 S15.1.3.2_A2.5_T1: SKIP | 272 S15.1.3.2_A2.5_T1: SKIP |
| 277 | 273 |
| 278 [ $arch == mips ] | 274 [ $arch == mips ] |
| 279 | 275 |
| 280 # Skip all tests on MIPS. | 276 # Skip all tests on MIPS. |
| 281 *: SKIP | 277 *: SKIP |
| OLD | NEW |