| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'S15.9.3.1_A5_T4': [PASS, FAIL_OK], | 86 'S15.9.3.1_A5_T4': [PASS, FAIL_OK], |
| 87 'S15.9.3.1_A5_T5': [PASS, FAIL_OK], | 87 'S15.9.3.1_A5_T5': [PASS, FAIL_OK], |
| 88 'S15.9.3.1_A5_T6': [PASS, FAIL_OK], | 88 'S15.9.3.1_A5_T6': [PASS, FAIL_OK], |
| 89 | 89 |
| 90 # ObjectKeys() no longer throws TypeError when passed a primitive value which | 90 # ObjectKeys() no longer throws TypeError when passed a primitive value which |
| 91 # is not null or undefined (per ES6). | 91 # is not null or undefined (per ES6). |
| 92 '15.2.3.14-1-1': [FAIL_OK], | 92 '15.2.3.14-1-1': [FAIL_OK], |
| 93 '15.2.3.14-1-2': [FAIL_OK], | 93 '15.2.3.14-1-2': [FAIL_OK], |
| 94 '15.2.3.14-1-3': [FAIL_OK], | 94 '15.2.3.14-1-3': [FAIL_OK], |
| 95 | 95 |
| 96 # Object.getOwnPropertyNames(O) no longer throws when passed a primitive value
. |
| 97 '15.2.3.4-1-4': [FAIL_OK], |
| 98 '15.2.3.4-1-5': [FAIL_OK], |
| 99 '15.2.3.4-1': [FAIL_OK], |
| 100 |
| 96 ############################ SKIPPED TESTS ############################# | 101 ############################ SKIPPED TESTS ############################# |
| 97 | 102 |
| 98 # These tests take a looong time to run in debug mode. | 103 # These tests take a looong time to run in debug mode. |
| 99 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]], | 104 'S15.1.3.1_A2.5_T1': [PASS, ['mode == debug', SKIP]], |
| 100 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]], | 105 'S15.1.3.2_A2.5_T1': [PASS, ['mode == debug', SKIP]], |
| 101 }], # ALWAYS | 106 }], # ALWAYS |
| 102 | 107 |
| 103 ['system == macos', { | 108 ['system == macos', { |
| 104 '11.3.2_TRP': [FAIL], | 109 '11.3.2_TRP': [FAIL], |
| 105 '9.2.5_11_g_ii_2': [FAIL], | 110 '9.2.5_11_g_ii_2': [FAIL], |
| 106 }], # system == macos | 111 }], # system == macos |
| 107 | 112 |
| 108 ['arch == arm or arch == mipsel or arch == mips or arch == arm64 or arch == mips
64el', { | 113 ['arch == arm or arch == mipsel or arch == mips or arch == arm64 or arch == mips
64el', { |
| 109 | 114 |
| 110 # TODO(mstarzinger): Causes stack overflow on simulators due to eager | 115 # TODO(mstarzinger): Causes stack overflow on simulators due to eager |
| 111 # compilation of parenthesized function literals. Needs investigation. | 116 # compilation of parenthesized function literals. Needs investigation. |
| 112 'S13.2.1_A1_T1': [SKIP], | 117 'S13.2.1_A1_T1': [SKIP], |
| 113 | 118 |
| 114 # BUG(3251225): Tests that timeout with --nocrankshaft. | 119 # BUG(3251225): Tests that timeout with --nocrankshaft. |
| 115 'S15.1.3.1_A2.4_T1': [SKIP], | 120 'S15.1.3.1_A2.4_T1': [SKIP], |
| 116 'S15.1.3.1_A2.5_T1': [SKIP], | 121 'S15.1.3.1_A2.5_T1': [SKIP], |
| 117 'S15.1.3.2_A2.4_T1': [SKIP], | 122 'S15.1.3.2_A2.4_T1': [SKIP], |
| 118 'S15.1.3.2_A2.5_T1': [SKIP], | 123 'S15.1.3.2_A2.5_T1': [SKIP], |
| 119 'S15.1.3.3_A2.3_T1': [SKIP], | 124 'S15.1.3.3_A2.3_T1': [SKIP], |
| 120 'S15.1.3.4_A2.3_T1': [SKIP], | 125 'S15.1.3.4_A2.3_T1': [SKIP], |
| 121 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 126 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
| 122 ] | 127 ] |
| OLD | NEW |