| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 'regress/regress-2185-2': [PASS, TIMEOUT], | 167 'regress/regress-2185-2': [PASS, TIMEOUT], |
| 168 | 168 |
| 169 # Stack manipulations in LiveEdit is not implemented for this arch. | 169 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 170 'debug-liveedit-check-stack': [SKIP], | 170 'debug-liveedit-check-stack': [SKIP], |
| 171 'debug-liveedit-stack-padding': [SKIP], | 171 'debug-liveedit-stack-padding': [SKIP], |
| 172 'debug-liveedit-restart-frame': [SKIP], | 172 'debug-liveedit-restart-frame': [SKIP], |
| 173 'debug-liveedit-double-call': [SKIP], | 173 'debug-liveedit-double-call': [SKIP], |
| 174 | 174 |
| 175 # BUG(v8:3147). It works on other architectures by accident. | 175 # BUG(v8:3147). It works on other architectures by accident. |
| 176 'regress/regress-conditional-position': [FAIL], | 176 'regress/regress-conditional-position': [FAIL], |
| 177 |
| 178 # BUG(v8:3149). Incorrect register usage exposed in debug mode. |
| 179 'sin-cos': [PASS, ['mode == debug', FAIL]], |
| 177 }], # 'arch == a64' | 180 }], # 'arch == a64' |
| 178 | 181 |
| 179 ['arch == a64 and mode == debug and simulator_run == True', { | 182 ['arch == a64 and mode == debug and simulator_run == True', { |
| 180 | 183 |
| 181 # Pass but take too long with the simulator in debug mode. | 184 # Pass but take too long with the simulator in debug mode. |
| 182 'array-sort': [PASS, TIMEOUT], | 185 'array-sort': [PASS, TIMEOUT], |
| 183 'packed-elements': [SKIP], | 186 'packed-elements': [SKIP], |
| 184 'regexp-global': [SKIP], | 187 'regexp-global': [SKIP], |
| 185 'compiler/alloc-numbers': [SKIP], | 188 'compiler/alloc-numbers': [SKIP], |
| 186 'harmony/symbols': [SKIP], | 189 'harmony/symbols': [SKIP], |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 'never-optimize': [SKIP], | 339 'never-optimize': [SKIP], |
| 337 'regress/regress-2185-2': [SKIP], | 340 'regress/regress-2185-2': [SKIP], |
| 338 'harmony/object-observe': [SKIP], | 341 'harmony/object-observe': [SKIP], |
| 339 'readonly': [SKIP], | 342 'readonly': [SKIP], |
| 340 'array-feedback': [SKIP], | 343 'array-feedback': [SKIP], |
| 341 | 344 |
| 342 # Deopt every n garbage collections collides with deopt every n times. | 345 # Deopt every n garbage collections collides with deopt every n times. |
| 343 'regress/regress-2653': [SKIP], | 346 'regress/regress-2653': [SKIP], |
| 344 }], # 'deopt_fuzzer == True' | 347 }], # 'deopt_fuzzer == True' |
| 345 ] | 348 ] |
| OLD | NEW |