| 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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 | 727 |
| 728 'built-ins/Math/exp/S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise
with --fast-math) | 728 'built-ins/Math/exp/S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise
with --fast-math) |
| 729 | 729 |
| 730 # Linux for ia32 (and therefore simulators) default to extended 80 bit | 730 # Linux for ia32 (and therefore simulators) default to extended 80 bit |
| 731 # floating point formats, so these tests checking 64-bit FP precision fail. | 731 # floating point formats, so these tests checking 64-bit FP precision fail. |
| 732 # The other platforms/arch's pass these tests. | 732 # The other platforms/arch's pass these tests. |
| 733 # We follow the other major JS engines by keeping this default. | 733 # We follow the other major JS engines by keeping this default. |
| 734 'language/types/number/S8.5_A2.1': [PASS, FAIL_OK], | 734 'language/types/number/S8.5_A2.1': [PASS, FAIL_OK], |
| 735 'language/types/number/S8.5_A2.2': [PASS, FAIL_OK], | 735 'language/types/number/S8.5_A2.2': [PASS, FAIL_OK], |
| 736 | 736 |
| 737 # 'if' should never return a completion whose value component is empty. |
| 738 # https://bugs.ecmascript.org/show_bug.cgi?id=4540 |
| 739 'language/statements/for/S12.6.3_A9.1': [FAIL], |
| 740 'language/statements/for/S12.6.3_A9': [FAIL], |
| 741 |
| 737 ############################ INVALID TESTS ############################# | 742 ############################ INVALID TESTS ############################# |
| 738 | 743 |
| 739 # The reference value calculated by Test262 is incorrect if you run these | 744 # The reference value calculated by Test262 is incorrect if you run these |
| 740 # tests in PST/PDT between first Sunday in March and first Sunday in April. | 745 # tests in PST/PDT between first Sunday in March and first Sunday in April. |
| 741 # The DST switch was moved in 2007 whereas Test262 bases the reference value | 746 # The DST switch was moved in 2007 whereas Test262 bases the reference value |
| 742 # on 2000. Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293 | 747 # on 2000. Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293 |
| 743 'built-ins/Date/S15.9.3.1_A5_T1': [PASS, FAIL_OK], | 748 'built-ins/Date/S15.9.3.1_A5_T1': [PASS, FAIL_OK], |
| 744 'built-ins/Date/S15.9.3.1_A5_T2': [PASS, FAIL_OK], | 749 'built-ins/Date/S15.9.3.1_A5_T2': [PASS, FAIL_OK], |
| 745 'built-ins/Date/S15.9.3.1_A5_T3': [PASS, FAIL_OK], | 750 'built-ins/Date/S15.9.3.1_A5_T3': [PASS, FAIL_OK], |
| 746 'built-ins/Date/S15.9.3.1_A5_T4': [PASS, FAIL_OK], | 751 'built-ins/Date/S15.9.3.1_A5_T4': [PASS, FAIL_OK], |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 | 826 |
| 822 # BUG(3251225): Tests that timeout with --nocrankshaft. | 827 # BUG(3251225): Tests that timeout with --nocrankshaft. |
| 823 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], | 828 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], |
| 824 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], | 829 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], |
| 825 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], | 830 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], |
| 826 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], | 831 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], |
| 827 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], | 832 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], |
| 828 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], | 833 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], |
| 829 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 834 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
| 830 ] | 835 ] |
| OLD | NEW |