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