| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 56 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
| 57 | 57 |
| 58 ############################################################################## | 58 ############################################################################## |
| 59 # Too slow in debug mode for GC stress mode. | 59 # Too slow in debug mode for GC stress mode. |
| 60 'regress/regress-crbug-217858': [PASS, ['mode == debug', SKIP]], | 60 'regress/regress-crbug-217858': [PASS, ['mode == debug', SKIP]], |
| 61 | 61 |
| 62 ############################################################################## | 62 ############################################################################## |
| 63 # Only regexp stuff tested, no need for extensive Crankshaft tests. | 63 # Only regexp stuff tested, no need for extensive Crankshaft tests. |
| 64 'regexp-global': [PASS, NO_VARIANTS], | 64 'regexp-global': [PASS, NO_VARIANTS], |
| 65 | 65 |
| 66 ############################################################################## | |
| 67 # No need to waste time for this test. | |
| 68 'd8-performance-now': [PASS, NO_VARIANTS], | |
| 69 | |
| 70 ############################################################################## | |
| 71 # These use a built-in that's only present in debug mode. They take | 66 # These use a built-in that's only present in debug mode. They take |
| 72 # too long to run in debug mode on ARM and MIPS. | 67 # too long to run in debug mode on ARM and MIPS. |
| 73 'fuzz-natives-part*': [PASS, ['mode == release or arch == arm or arch == andro
id_arm or arch == mipsel', SKIP]], | 68 'fuzz-natives-part*': [PASS, ['mode == release or arch == arm or arch == andro
id_arm or arch == mipsel', SKIP]], |
| 74 | 69 |
| 75 'big-object-literal': [PASS, ['arch == arm or arch == android_arm', SKIP]], | 70 'big-object-literal': [PASS, ['arch == arm or arch == android_arm', SKIP]], |
| 76 | 71 |
| 77 # Issue 488: this test sometimes times out. | 72 # Issue 488: this test sometimes times out. |
| 78 'array-constructor': [PASS, TIMEOUT], | 73 'array-constructor': [PASS, TIMEOUT], |
| 79 | 74 |
| 80 # Very slow on ARM and MIPS, contains no architecture dependent code. | 75 # Very slow on ARM and MIPS, contains no architecture dependent code. |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 'never-optimize': [SKIP], | 279 'never-optimize': [SKIP], |
| 285 'regress/regress-2185-2': [SKIP], | 280 'regress/regress-2185-2': [SKIP], |
| 286 'harmony/object-observe': [SKIP], | 281 'harmony/object-observe': [SKIP], |
| 287 'readonly': [SKIP], | 282 'readonly': [SKIP], |
| 288 'array-feedback': [SKIP], | 283 'array-feedback': [SKIP], |
| 289 | 284 |
| 290 # Deopt every n garbage collections collides with deopt every n times. | 285 # Deopt every n garbage collections collides with deopt every n times. |
| 291 'regress/regress-2653': [SKIP], | 286 'regress/regress-2653': [SKIP], |
| 292 }], # 'deopt_fuzzer == True' | 287 }], # 'deopt_fuzzer == True' |
| 293 ] | 288 ] |
| OLD | NEW |