| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 '12.3.3': [FAIL], | 67 '12.3.3': [FAIL], |
| 68 '12.3_a': [FAIL], | 68 '12.3_a': [FAIL], |
| 69 '15.5.4.9_3': [PASS, FAIL], | 69 '15.5.4.9_3': [PASS, FAIL], |
| 70 | 70 |
| 71 ##################### DELIBERATE INCOMPATIBILITIES ##################### | 71 ##################### DELIBERATE INCOMPATIBILITIES ##################### |
| 72 | 72 |
| 73 # This tests precision of Math functions. The implementation for those | 73 # This tests precision of Math functions. The implementation for those |
| 74 # trigonometric functions are platform/compiler dependent. Furthermore, the | 74 # trigonometric functions are platform/compiler dependent. Furthermore, the |
| 75 # expectation values by far deviates from the actual result given by an | 75 # expectation values by far deviates from the actual result given by an |
| 76 # arbitrary-precision calculator, making those tests partly bogus. | 76 # arbitrary-precision calculator, making those tests partly bogus. |
| 77 'S15.8.2.7_A7': [PASS, FAIL_OK], # Math.cos |
| 77 'S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise with --fast-math) | 78 'S15.8.2.8_A6': [PASS, FAIL_OK], # Math.exp (less precise with --fast-math) |
| 78 'S15.8.2.16_A7': [PASS, FAIL_OK], # Math.sin | 79 'S15.8.2.16_A7': [PASS, FAIL_OK], # Math.sin |
| 79 'S15.8.2.18_A7': [PASS, FAIL_OK], # Math.tan | 80 'S15.8.2.18_A7': [PASS, FAIL_OK], # Math.tan |
| 80 | 81 |
| 81 # Linux for ia32 (and therefore simulators) default to extended 80 bit floatin
g | 82 # Linux for ia32 (and therefore simulators) default to extended 80 bit floatin
g |
| 82 # point formats, so these tests checking 64-bit FP precision fail. The other | 83 # point formats, so these tests checking 64-bit FP precision fail. The other |
| 83 # platforms/arch's pass these tests. | 84 # platforms/arch's pass these tests. |
| 84 # We follow the other major JS engines by keeping this default. | 85 # We follow the other major JS engines by keeping this default. |
| 85 'S8.5_A2.1': [PASS, FAIL_OK], | 86 'S8.5_A2.1': [PASS, FAIL_OK], |
| 86 'S8.5_A2.2': [PASS, FAIL_OK], | 87 'S8.5_A2.2': [PASS, FAIL_OK], |
| (...skipping 26 matching lines...) Expand all Loading... |
| 113 | 114 |
| 114 # BUG(3251225): Tests that timeout with --nocrankshaft. | 115 # BUG(3251225): Tests that timeout with --nocrankshaft. |
| 115 'S15.1.3.1_A2.4_T1': [SKIP], | 116 'S15.1.3.1_A2.4_T1': [SKIP], |
| 116 'S15.1.3.1_A2.5_T1': [SKIP], | 117 'S15.1.3.1_A2.5_T1': [SKIP], |
| 117 'S15.1.3.2_A2.4_T1': [SKIP], | 118 'S15.1.3.2_A2.4_T1': [SKIP], |
| 118 'S15.1.3.2_A2.5_T1': [SKIP], | 119 'S15.1.3.2_A2.5_T1': [SKIP], |
| 119 'S15.1.3.3_A2.3_T1': [SKIP], | 120 'S15.1.3.3_A2.3_T1': [SKIP], |
| 120 'S15.1.3.4_A2.3_T1': [SKIP], | 121 'S15.1.3.4_A2.3_T1': [SKIP], |
| 121 }], # 'arch == arm or arch == mipsel or arch == a64' | 122 }], # 'arch == arm or arch == mipsel or arch == a64' |
| 122 ] | 123 ] |
| OLD | NEW |