| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 '11.3_a': [FAIL], | 61 '11.3_a': [FAIL], |
| 62 '12.1.1_a': [FAIL], | 62 '12.1.1_a': [FAIL], |
| 63 '12.1.2.1_4': [FAIL], | 63 '12.1.2.1_4': [FAIL], |
| 64 '12.3.2_FDT_7_a_iv': [FAIL], | 64 '12.3.2_FDT_7_a_iv': [FAIL], |
| 65 '12.3.3': [FAIL], | 65 '12.3.3': [FAIL], |
| 66 '12.3_a': [FAIL], | 66 '12.3_a': [FAIL], |
| 67 '15.5.4.9_3': [PASS, FAIL], | 67 '15.5.4.9_3': [PASS, FAIL], |
| 68 | 68 |
| 69 ##################### DELIBERATE INCOMPATIBILITIES ##################### | 69 ##################### DELIBERATE INCOMPATIBILITIES ##################### |
| 70 | 70 |
| 71 # This tests precision of Math functions. The implementation for those | |
| 72 # trigonometric functions are platform/compiler dependent. Furthermore, the | |
| 73 # expectation values by far deviates from the actual result given by an | |
| 74 # arbitrary-precision calculator, making those tests partly bogus. | |
| 75 'S15.8.2.7_A7': [PASS, FAIL_OK], # Math.cos | |
| 76 '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) |
| 77 'S15.8.2.16_A7': [PASS, FAIL_OK], # Math.sin | |
| 78 'S15.8.2.18_A7': [PASS, FAIL_OK], # Math.tan | |
| 79 | 72 |
| 80 # Linux for ia32 (and therefore simulators) default to extended 80 bit | 73 # Linux for ia32 (and therefore simulators) default to extended 80 bit |
| 81 # 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. |
| 82 # The other platforms/arch's pass these tests. | 75 # The other platforms/arch's pass these tests. |
| 83 # We follow the other major JS engines by keeping this default. | 76 # We follow the other major JS engines by keeping this default. |
| 84 'S8.5_A2.1': [PASS, FAIL_OK], | 77 'S8.5_A2.1': [PASS, FAIL_OK], |
| 85 'S8.5_A2.2': [PASS, FAIL_OK], | 78 'S8.5_A2.2': [PASS, FAIL_OK], |
| 86 | 79 |
| 87 ############################ INVALID TESTS ############################# | 80 ############################ INVALID TESTS ############################# |
| 88 | 81 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 117 | 110 |
| 118 # BUG(3251225): Tests that timeout with --nocrankshaft. | 111 # BUG(3251225): Tests that timeout with --nocrankshaft. |
| 119 'S15.1.3.1_A2.4_T1': [SKIP], | 112 'S15.1.3.1_A2.4_T1': [SKIP], |
| 120 'S15.1.3.1_A2.5_T1': [SKIP], | 113 'S15.1.3.1_A2.5_T1': [SKIP], |
| 121 'S15.1.3.2_A2.4_T1': [SKIP], | 114 'S15.1.3.2_A2.4_T1': [SKIP], |
| 122 'S15.1.3.2_A2.5_T1': [SKIP], | 115 'S15.1.3.2_A2.5_T1': [SKIP], |
| 123 'S15.1.3.3_A2.3_T1': [SKIP], | 116 'S15.1.3.3_A2.3_T1': [SKIP], |
| 124 'S15.1.3.4_A2.3_T1': [SKIP], | 117 'S15.1.3.4_A2.3_T1': [SKIP], |
| 125 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 118 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
| 126 ] | 119 ] |
| OLD | NEW |