| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 }], # 'arch == a64' | 214 }], # 'arch == a64' |
| 215 | 215 |
| 216 ['arch == a64 and mode == debug and simulator_run == True', { | 216 ['arch == a64 and mode == debug and simulator_run == True', { |
| 217 | 217 |
| 218 # Pass but take too long with the simulator in debug mode. | 218 # Pass but take too long with the simulator in debug mode. |
| 219 'array-sort': [PASS, TIMEOUT], | 219 'array-sort': [PASS, TIMEOUT], |
| 220 'packed-elements': [SKIP], | 220 'packed-elements': [SKIP], |
| 221 'regexp-global': [SKIP], | 221 'regexp-global': [SKIP], |
| 222 'compiler/alloc-numbers': [SKIP], | 222 'compiler/alloc-numbers': [SKIP], |
| 223 'harmony/symbols': [SKIP], | 223 'harmony/symbols': [SKIP], |
| 224 # Issue 3219: |
| 225 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], |
| 224 }], # 'arch == a64 and mode == debug and simulator_run == True' | 226 }], # 'arch == a64 and mode == debug and simulator_run == True' |
| 225 | 227 |
| 226 ############################################################################## | 228 ############################################################################## |
| 227 ['asan == True', { | 229 ['asan == True', { |
| 228 # Skip tests not suitable for ASAN. | 230 # Skip tests not suitable for ASAN. |
| 229 'big-array-literal': [SKIP], | 231 'big-array-literal': [SKIP], |
| 230 'big-object-literal': [SKIP], | 232 'big-object-literal': [SKIP], |
| 231 'regress/regress-crbug-178790': [SKIP], | 233 'regress/regress-crbug-178790': [SKIP], |
| 232 }], # 'asan == True' | 234 }], # 'asan == True' |
| 233 | 235 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 'never-optimize': [SKIP], | 375 'never-optimize': [SKIP], |
| 374 'regress/regress-2185-2': [SKIP], | 376 'regress/regress-2185-2': [SKIP], |
| 375 'harmony/object-observe': [SKIP], | 377 'harmony/object-observe': [SKIP], |
| 376 'readonly': [SKIP], | 378 'readonly': [SKIP], |
| 377 'array-feedback': [SKIP], | 379 'array-feedback': [SKIP], |
| 378 | 380 |
| 379 # Deopt every n garbage collections collides with deopt every n times. | 381 # Deopt every n garbage collections collides with deopt every n times. |
| 380 'regress/regress-2653': [SKIP], | 382 'regress/regress-2653': [SKIP], |
| 381 }], # 'deopt_fuzzer == True' | 383 }], # 'deopt_fuzzer == True' |
| 382 ] | 384 ] |
| OLD | NEW |