| 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 |
| 11 # with the distribution. | 11 # with the distribution. |
| 12 # * Neither the name of Google Inc. nor the names of its | 12 # * Neither the name of Google Inc. nor the names of its |
| 13 # contributors may be used to endorse or promote products derived | 13 # contributors may be used to endorse or promote products derived |
| 14 # from this software without specific prior written permission. | 14 # from this software without specific prior written permission. |
| 15 # | 15 # |
| 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 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 | |
| 29 ############################### BUGS ################################### | |
| 30 | |
| 31 # Sequencing of getter side effects on receiver and argument properties | |
| 32 # is wrong. The receiver callback should be called before any arguments | |
| 33 # are evaluated. | |
| 34 # V8 Bug: http://code.google.com/p/v8/issues/detail?id=691 | |
| 35 [ | 28 [ |
| 36 [ALWAYS, { | 29 [ALWAYS, { |
| 37 '11.2.3-3_3': [FAIL], | 30 ############################### BUGS ################################### |
| 38 | 31 |
| 39 '15.5.4.9_CE': [['no_i18n', SKIP]], | 32 '15.5.4.9_CE': [['no_i18n', SKIP]], |
| 40 | 33 |
| 41 ######################## NEEDS INVESTIGATION ########################### | 34 ######################## NEEDS INVESTIGATION ########################### |
| 42 | 35 |
| 43 # These test failures are specific to the intl402 suite and need investigation | 36 # These test failures are specific to the intl402 suite and need investigation |
| 44 # to be either marked as bugs with issues filed for them or as deliberate | 37 # to be either marked as bugs with issues filed for them or as deliberate |
| 45 # incompatibilities if the test cases turn out to be broken or ambiguous. | 38 # incompatibilities if the test cases turn out to be broken or ambiguous. |
| 46 '6.2.3': [FAIL], | 39 '6.2.3': [FAIL], |
| 47 '9.2.1_2': [FAIL], | 40 '9.2.1_2': [FAIL], |
| (...skipping 24 matching lines...) Expand all Loading... |
| 72 | 65 |
| 73 # This tests precision of Math functions. The implementation for those | 66 # This tests precision of Math functions. The implementation for those |
| 74 # trigonometric functions are platform/compiler dependent. Furthermore, the | 67 # trigonometric functions are platform/compiler dependent. Furthermore, the |
| 75 # expectation values by far deviates from the actual result given by an | 68 # expectation values by far deviates from the actual result given by an |
| 76 # arbitrary-precision calculator, making those tests partly bogus. | 69 # arbitrary-precision calculator, making those tests partly bogus. |
| 77 'S15.8.2.7_A7': [PASS, FAIL_OK], # Math.cos | 70 'S15.8.2.7_A7': [PASS, FAIL_OK], # Math.cos |
| 78 '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) |
| 79 'S15.8.2.16_A7': [PASS, FAIL_OK], # Math.sin | 72 'S15.8.2.16_A7': [PASS, FAIL_OK], # Math.sin |
| 80 'S15.8.2.18_A7': [PASS, FAIL_OK], # Math.tan | 73 'S15.8.2.18_A7': [PASS, FAIL_OK], # Math.tan |
| 81 | 74 |
| 82 # Linux for ia32 (and therefore simulators) default to extended 80 bit floatin
g | 75 # Linux for ia32 (and therefore simulators) default to extended 80 bit |
| 83 # point formats, so these tests checking 64-bit FP precision fail. The other | 76 # floating point formats, so these tests checking 64-bit FP precision fail. |
| 84 # platforms/arch's pass these tests. | 77 # The other platforms/arch's pass these tests. |
| 85 # We follow the other major JS engines by keeping this default. | 78 # We follow the other major JS engines by keeping this default. |
| 86 'S8.5_A2.1': [PASS, FAIL_OK], | 79 'S8.5_A2.1': [PASS, FAIL_OK], |
| 87 'S8.5_A2.2': [PASS, FAIL_OK], | 80 'S8.5_A2.2': [PASS, FAIL_OK], |
| 88 | 81 |
| 89 ############################ INVALID TESTS ############################# | 82 ############################ INVALID TESTS ############################# |
| 90 | 83 |
| 91 # The reference value calculated by Test262 is incorrect if you run these test
s | 84 # The reference value calculated by Test262 is incorrect if you run these |
| 92 # in PST/PDT between first Sunday in March and first Sunday in April. The DST | 85 # tests in PST/PDT between first Sunday in March and first Sunday in April. |
| 93 # switch was moved in 2007 whereas Test262 bases the reference value on 2000. | 86 # The DST switch was moved in 2007 whereas Test262 bases the reference value |
| 94 # Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293 | 87 # on 2000. Test262 Bug: https://bugs.ecmascript.org/show_bug.cgi?id=293 |
| 95 'S15.9.3.1_A5_T1': [PASS, FAIL_OK], | 88 'S15.9.3.1_A5_T1': [PASS, FAIL_OK], |
| 96 'S15.9.3.1_A5_T2': [PASS, FAIL_OK], | 89 'S15.9.3.1_A5_T2': [PASS, FAIL_OK], |
| 97 'S15.9.3.1_A5_T3': [PASS, FAIL_OK], | 90 'S15.9.3.1_A5_T3': [PASS, FAIL_OK], |
| 98 'S15.9.3.1_A5_T4': [PASS, FAIL_OK], | 91 'S15.9.3.1_A5_T4': [PASS, FAIL_OK], |
| 99 'S15.9.3.1_A5_T5': [PASS, FAIL_OK], | 92 'S15.9.3.1_A5_T5': [PASS, FAIL_OK], |
| 100 'S15.9.3.1_A5_T6': [PASS, FAIL_OK], | 93 'S15.9.3.1_A5_T6': [PASS, FAIL_OK], |
| 101 | 94 |
| 102 ############################ SKIPPED TESTS ############################# | 95 ############################ SKIPPED TESTS ############################# |
| 103 | 96 |
| 104 # These tests take a looong time to run in debug mode. | 97 # These tests take a looong time to run in debug mode. |
| 105 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]], | 98 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]], |
| 106 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]], | 99 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]], |
| 107 }], # ALWAYS | 100 }], # ALWAYS |
| 108 | 101 |
| 109 ['arch == arm or arch == mipsel or arch == a64', { | 102 ['arch == arm or arch == mipsel or arch == a64', { |
| 110 | 103 |
| 111 # TODO(mstarzinger): Causes stack overflow on simulators due to eager | 104 # TODO(mstarzinger): Causes stack overflow on simulators due to eager |
| 112 # compilation of parenthesized function literals. Needs investigation. | 105 # compilation of parenthesized function literals. Needs investigation. |
| 113 'S13.2.1_A1_T1': [SKIP], | 106 'S13.2.1_A1_T1': [SKIP], |
| 114 | 107 |
| 115 # BUG(3251225): Tests that timeout with --nocrankshaft. | 108 # BUG(3251225): Tests that timeout with --nocrankshaft. |
| 116 'S15.1.3.1_A2.4_T1': [SKIP], | 109 'S15.1.3.1_A2.4_T1': [SKIP], |
| 117 'S15.1.3.1_A2.5_T1': [SKIP], | 110 'S15.1.3.1_A2.5_T1': [SKIP], |
| 118 'S15.1.3.2_A2.4_T1': [SKIP], | 111 'S15.1.3.2_A2.4_T1': [SKIP], |
| 119 'S15.1.3.2_A2.5_T1': [SKIP], | 112 'S15.1.3.2_A2.5_T1': [SKIP], |
| 120 'S15.1.3.3_A2.3_T1': [SKIP], | 113 'S15.1.3.3_A2.3_T1': [SKIP], |
| 121 'S15.1.3.4_A2.3_T1': [SKIP], | 114 'S15.1.3.4_A2.3_T1': [SKIP], |
| 122 }], # 'arch == arm or arch == mipsel or arch == a64' | 115 }], # 'arch == arm or arch == mipsel or arch == a64' |
| 123 ] | 116 ] |
| OLD | NEW |