| 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 11 matching lines...) Expand all Loading... |
| 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 prefix es5conform | 28 prefix es5conform |
| 29 def UNIMPLEMENTED = PASS || FAIL | 29 def UNIMPLEMENTED = PASS || FAIL |
| 30 def FAIL_OK = FAIL, OKAY | 30 def FAIL_OK = FAIL, OKAY |
| 31 | 31 |
| 32 |
| 33 ############################################################################## |
| 32 # Non UTF8 characters in test files. | 34 # Non UTF8 characters in test files. |
| 33 chapter10/10.4/10.4.2/10.4.2-3-c-2-s: FAIL_OK | 35 chapter10/10.4/10.4.2/10.4.2-3-c-2-s: FAIL_OK |
| 34 chapter10/10.4/10.4.2/10.4.2-3-c-1-s: FAIL_OK | 36 chapter10/10.4/10.4.2/10.4.2-3-c-1-s: FAIL_OK |
| 35 chapter10/10.4/10.4.2/10.4.2-2-c-1: FAIL_OK | 37 chapter10/10.4/10.4.2/10.4.2-2-c-1: FAIL_OK |
| 36 | 38 |
| 37 # We do not implement the error chekcs specified in the production rules | 39 # We do not implement the error chekcs specified in the production rules |
| 38 # of 11.1.5 (Object initializer). | 40 # of 11.1.5 (Object initializer). |
| 39 # We are compatible with Safari and Firefox. | 41 # We are compatible with Safari and Firefox. |
| 40 chapter11/11.1/11.1.5: UNIMPLEMENTED | 42 chapter11/11.1/11.1.5: UNIMPLEMENTED |
| 41 | 43 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 chapter15/15.10/15.10.7/15.10.7.3/15.10.7.3-2: FAIL_OK | 243 chapter15/15.10/15.10.7/15.10.7.3/15.10.7.3-2: FAIL_OK |
| 242 chapter15/15.10/15.10.7/15.10.7.4/15.10.7.4-1: FAIL_OK | 244 chapter15/15.10/15.10.7/15.10.7.4/15.10.7.4-1: FAIL_OK |
| 243 chapter15/15.10/15.10.7/15.10.7.4/15.10.7.4-2: FAIL_OK | 245 chapter15/15.10/15.10.7/15.10.7.4/15.10.7.4-2: FAIL_OK |
| 244 chapter15/15.10/15.10.7/15.10.7.5/15.10.7.5-1: FAIL_OK | 246 chapter15/15.10/15.10.7/15.10.7.5/15.10.7.5-1: FAIL_OK |
| 245 chapter15/15.10/15.10.7/15.10.7.5/15.10.7.5-2: FAIL_OK | 247 chapter15/15.10/15.10.7/15.10.7.5/15.10.7.5-2: FAIL_OK |
| 246 | 248 |
| 247 [ $arch == mips ] | 249 [ $arch == mips ] |
| 248 | 250 |
| 249 # Skip all tests on MIPS. | 251 # Skip all tests on MIPS. |
| 250 *: SKIP | 252 *: SKIP |
| OLD | NEW |