| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 169 |
| 170 # Stack manipulations in LiveEdit is not implemented for this arch. | 170 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 171 'debug-liveedit-check-stack': [SKIP], | 171 'debug-liveedit-check-stack': [SKIP], |
| 172 'debug-liveedit-stack-padding': [SKIP], | 172 'debug-liveedit-stack-padding': [SKIP], |
| 173 'debug-liveedit-restart-frame': [SKIP], | 173 'debug-liveedit-restart-frame': [SKIP], |
| 174 'debug-liveedit-double-call': [SKIP], | 174 'debug-liveedit-double-call': [SKIP], |
| 175 | 175 |
| 176 # BUG(v8:3147). It works on other architectures by accident. | 176 # BUG(v8:3147). It works on other architectures by accident. |
| 177 'regress/regress-conditional-position': [FAIL], | 177 'regress/regress-conditional-position': [FAIL], |
| 178 | 178 |
| 179 # BUG(v8:3156): Fails on gc stress bots. | |
| 180 'compiler/concurrent-invalidate-transition-map': [PASS, ['gc_stress == True',
FAIL]], | |
| 181 | |
| 182 # Slow tests. | 179 # Slow tests. |
| 183 'array-concat': [PASS, SLOW], | 180 'array-concat': [PASS, SLOW], |
| 184 'array-constructor': [PASS, SLOW], | 181 'array-constructor': [PASS, SLOW], |
| 185 'array-indexing': [PASS, SLOW], | 182 'array-indexing': [PASS, SLOW], |
| 186 'array-reduce': [PASS, SLOW], | 183 'array-reduce': [PASS, SLOW], |
| 187 'array-sort': [PASS, SLOW], | 184 'array-sort': [PASS, SLOW], |
| 188 'array-splice': [PASS, SLOW], | 185 'array-splice': [PASS, SLOW], |
| 189 'bit-not': [PASS, SLOW], | 186 'bit-not': [PASS, SLOW], |
| 190 'compiler/alloc-number': [PASS, SLOW], | 187 'compiler/alloc-number': [PASS, SLOW], |
| 191 'compiler/osr-assert': [PASS, SLOW], | 188 'compiler/osr-assert': [PASS, SLOW], |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 'never-optimize': [SKIP], | 372 'never-optimize': [SKIP], |
| 376 'regress/regress-2185-2': [SKIP], | 373 'regress/regress-2185-2': [SKIP], |
| 377 'harmony/object-observe': [SKIP], | 374 'harmony/object-observe': [SKIP], |
| 378 'readonly': [SKIP], | 375 'readonly': [SKIP], |
| 379 'array-feedback': [SKIP], | 376 'array-feedback': [SKIP], |
| 380 | 377 |
| 381 # Deopt every n garbage collections collides with deopt every n times. | 378 # Deopt every n garbage collections collides with deopt every n times. |
| 382 'regress/regress-2653': [SKIP], | 379 'regress/regress-2653': [SKIP], |
| 383 }], # 'deopt_fuzzer == True' | 380 }], # 'deopt_fuzzer == True' |
| 384 ] | 381 ] |
| OLD | NEW |