OLD | NEW |
1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 12 matching lines...) Expand all Loading... |
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 prefix sputnik | 28 prefix sputnik |
29 def FAIL_OK = FAIL, OKAY | 29 def FAIL_OK = FAIL, OKAY |
30 | 30 |
31 ##################### DELIBERATE INCOMPATIBILITIES ##################### | 31 ##################### DELIBERATE INCOMPATIBILITIES ##################### |
32 | 32 |
33 # 900066: Deleting elements in .arguments should disconnect the | |
34 # element from the actual arguments. Implementing this is nontrivial | |
35 # and we have no indication that anything on the web depends on this | |
36 # feature. | |
37 S13_A13_T1: FAIL_OK | |
38 S13_A13_T2: FAIL_OK | |
39 S13_A13_T3: FAIL_OK | |
40 | |
41 # This tests precision of trignometric functions. We're slightly off | 33 # This tests precision of trignometric functions. We're slightly off |
42 # from the implementation in libc (~ 1e-17) but it's not clear if we | 34 # from the implementation in libc (~ 1e-17) but it's not clear if we |
43 # or they are closer to the right answer, or if it even matters. | 35 # or they are closer to the right answer, or if it even matters. |
44 S15.8.2.16_A7: PASS || FAIL_OK | 36 S15.8.2.16_A7: PASS || FAIL_OK |
45 S15.8.2.18_A7: PASS || FAIL_OK | 37 S15.8.2.18_A7: PASS || FAIL_OK |
46 S15.8.2.13_A23: PASS || FAIL_OK | 38 S15.8.2.13_A23: PASS || FAIL_OK |
47 | 39 |
48 # We allow calls to regexp exec() with no arguments to fail for | 40 # We allow calls to regexp exec() with no arguments to fail for |
49 # compatibility reasons. | 41 # compatibility reasons. |
50 S15.10.6.2_A1_T16: FAIL_OK | 42 S15.10.6.2_A1_T16: FAIL_OK |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 S15.1.3.2_A2.5_T1: SKIP | 260 S15.1.3.2_A2.5_T1: SKIP |
269 S15.1.3.3_A2.3_T1: SKIP | 261 S15.1.3.3_A2.3_T1: SKIP |
270 S15.1.3.4_A2.3_T1: SKIP | 262 S15.1.3.4_A2.3_T1: SKIP |
271 S15.1.3.1_A2.5_T1: SKIP | 263 S15.1.3.1_A2.5_T1: SKIP |
272 S15.1.3.2_A2.5_T1: SKIP | 264 S15.1.3.2_A2.5_T1: SKIP |
273 | 265 |
274 [ $arch == mips ] | 266 [ $arch == mips ] |
275 | 267 |
276 # Skip all tests on MIPS. | 268 # Skip all tests on MIPS. |
277 *: SKIP | 269 *: SKIP |
OLD | NEW |