| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 'S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise with --fast-math) | 71 'S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise with --fast-math) |
| 72 | 72 |
| 73 # Linux for ia32 (and therefore simulators) default to extended 80 bit | 73 # Linux for ia32 (and therefore simulators) default to extended 80 bit |
| 74 # floating point formats, so these tests checking 64-bit FP precision fail. | 74 # floating point formats, so these tests checking 64-bit FP precision fail. |
| 75 # The other platforms/arch's pass these tests. | 75 # The other platforms/arch's pass these tests. |
| 76 # We follow the other major JS engines by keeping this default. | 76 # We follow the other major JS engines by keeping this default. |
| 77 'S8.5_A2.1': [PASS, FAIL_OK], | 77 'S8.5_A2.1': [PASS, FAIL_OK], |
| 78 'S8.5_A2.2': [PASS, FAIL_OK], | 78 'S8.5_A2.2': [PASS, FAIL_OK], |
| 79 | 79 |
| 80 # ES6 allows duplicate properties |
| 81 '11.1.5-4-4-a-1-s': [FAIL], |
| 82 '11.1.5_4-4-b-1': [FAIL], |
| 83 '11.1.5_4-4-b-2': [FAIL], |
| 84 '11.1.5_4-4-c-1': [FAIL], |
| 85 '11.1.5_4-4-c-2': [FAIL], |
| 86 '11.1.5_4-4-d-1': [FAIL], |
| 87 '11.1.5_4-4-d-2': [FAIL], |
| 88 '11.1.5_4-4-d-3': [FAIL], |
| 89 '11.1.5_4-4-d-4': [FAIL], |
| 90 |
| 80 ############################ INVALID TESTS ############################# | 91 ############################ INVALID TESTS ############################# |
| 81 | 92 |
| 82 # The reference value calculated by Test262 is incorrect if you run these | 93 # The reference value calculated by Test262 is incorrect if you run these |
| 83 # tests in PST/PDT between first Sunday in March and first Sunday in April. | 94 # tests in PST/PDT between first Sunday in March and first Sunday in April. |
| 84 # The DST switch was moved in 2007 whereas Test262 bases the reference value | 95 # The DST switch was moved in 2007 whereas Test262 bases the reference value |
| 85 # on 2000. Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293 | 96 # on 2000. Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293 |
| 86 'S15.9.3.1_A5_T1': [PASS, FAIL_OK], | 97 'S15.9.3.1_A5_T1': [PASS, FAIL_OK], |
| 87 'S15.9.3.1_A5_T2': [PASS, FAIL_OK], | 98 'S15.9.3.1_A5_T2': [PASS, FAIL_OK], |
| 88 'S15.9.3.1_A5_T3': [PASS, FAIL_OK], | 99 'S15.9.3.1_A5_T3': [PASS, FAIL_OK], |
| 89 'S15.9.3.1_A5_T4': [PASS, FAIL_OK], | 100 'S15.9.3.1_A5_T4': [PASS, FAIL_OK], |
| (...skipping 20 matching lines...) Expand all Loading... |
| 110 | 121 |
| 111 # BUG(3251225): Tests that timeout with --nocrankshaft. | 122 # BUG(3251225): Tests that timeout with --nocrankshaft. |
| 112 'S15.1.3.1_A2.4_T1': [SKIP], | 123 'S15.1.3.1_A2.4_T1': [SKIP], |
| 113 'S15.1.3.1_A2.5_T1': [SKIP], | 124 'S15.1.3.1_A2.5_T1': [SKIP], |
| 114 'S15.1.3.2_A2.4_T1': [SKIP], | 125 'S15.1.3.2_A2.4_T1': [SKIP], |
| 115 'S15.1.3.2_A2.5_T1': [SKIP], | 126 'S15.1.3.2_A2.5_T1': [SKIP], |
| 116 'S15.1.3.3_A2.3_T1': [SKIP], | 127 'S15.1.3.3_A2.3_T1': [SKIP], |
| 117 'S15.1.3.4_A2.3_T1': [SKIP], | 128 'S15.1.3.4_A2.3_T1': [SKIP], |
| 118 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 129 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
| 119 ] | 130 ] |
| OLD | NEW |