OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 'regress/regress-3247124': [SKIP], | 158 'regress/regress-3247124': [SKIP], |
159 'regress/regress-634': [SKIP], | 159 'regress/regress-634': [SKIP], |
160 'regress/regress-91008': [SKIP], | 160 'regress/regress-91008': [SKIP], |
161 'regress/regress-91010': [SKIP], | 161 'regress/regress-91010': [SKIP], |
162 'regress/regress-91013': [SKIP], | 162 'regress/regress-91013': [SKIP], |
163 'regress/regress-99167': [SKIP], | 163 'regress/regress-99167': [SKIP], |
164 | 164 |
165 # Long running tests. | 165 # Long running tests. |
166 'regress/regress-2185': [PASS, ['mode == debug', PASS, TIMEOUT]], | 166 'regress/regress-2185': [PASS, ['mode == debug', PASS, TIMEOUT]], |
167 'regress/regress-2185-2': [PASS, TIMEOUT], | 167 'regress/regress-2185-2': [PASS, TIMEOUT], |
| 168 'whitespaces': [PASS, TIMEOUT], |
168 | 169 |
169 # Stack manipulations in LiveEdit is not implemented for this arch. | 170 # Stack manipulations in LiveEdit is not implemented for this arch. |
170 'debug-liveedit-check-stack': [SKIP], | 171 'debug-liveedit-check-stack': [SKIP], |
171 'debug-liveedit-stack-padding': [SKIP], | 172 'debug-liveedit-stack-padding': [SKIP], |
172 'debug-liveedit-restart-frame': [SKIP], | 173 'debug-liveedit-restart-frame': [SKIP], |
173 'debug-liveedit-double-call': [SKIP], | 174 'debug-liveedit-double-call': [SKIP], |
174 | 175 |
175 # BUG(v8:3147). It works on other architectures by accident. | 176 # BUG(v8:3147). It works on other architectures by accident. |
176 'regress/regress-conditional-position': [FAIL], | 177 'regress/regress-conditional-position': [FAIL], |
177 | 178 |
178 # BUG(v8:3149). Incorrect register usage exposed in debug mode. | 179 # BUG(v8:3149). Incorrect register usage exposed in debug mode. |
179 'sin-cos': [PASS, ['mode == debug', FAIL]], | 180 'sin-cos': [PASS, ['mode == debug', FAIL]], |
| 181 |
| 182 # BUG(v8:3148): Invalid branch instruction emitted. |
| 183 'debug-references': [PASS, ['mode == debug', SKIP]], |
180 }], # 'arch == a64' | 184 }], # 'arch == a64' |
181 | 185 |
182 ['arch == a64 and mode == debug and simulator_run == True', { | 186 ['arch == a64 and mode == debug and simulator_run == True', { |
183 | 187 |
184 # Pass but take too long with the simulator in debug mode. | 188 # Pass but take too long with the simulator in debug mode. |
185 'array-sort': [PASS, TIMEOUT], | 189 'array-sort': [PASS, TIMEOUT], |
186 'packed-elements': [SKIP], | 190 'packed-elements': [SKIP], |
187 'regexp-global': [SKIP], | 191 'regexp-global': [SKIP], |
188 'compiler/alloc-numbers': [SKIP], | 192 'compiler/alloc-numbers': [SKIP], |
189 'harmony/symbols': [SKIP], | 193 'harmony/symbols': [SKIP], |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 'never-optimize': [SKIP], | 343 'never-optimize': [SKIP], |
340 'regress/regress-2185-2': [SKIP], | 344 'regress/regress-2185-2': [SKIP], |
341 'harmony/object-observe': [SKIP], | 345 'harmony/object-observe': [SKIP], |
342 'readonly': [SKIP], | 346 'readonly': [SKIP], |
343 'array-feedback': [SKIP], | 347 'array-feedback': [SKIP], |
344 | 348 |
345 # Deopt every n garbage collections collides with deopt every n times. | 349 # Deopt every n garbage collections collides with deopt every n times. |
346 'regress/regress-2653': [SKIP], | 350 'regress/regress-2653': [SKIP], |
347 }], # 'deopt_fuzzer == True' | 351 }], # 'deopt_fuzzer == True' |
348 ] | 352 ] |
OLD | NEW |