| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 54 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
| 55 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 55 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
| 56 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 56 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
| 57 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 57 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
| 58 | 58 |
| 59 ############################################################################## | 59 ############################################################################## |
| 60 # Too slow in debug mode for GC stress mode. | 60 # Too slow in debug mode for GC stress mode. |
| 61 'regress/regress-crbug-217858': [PASS, ['mode == debug', SKIP]], | 61 'regress/regress-crbug-217858': [PASS, ['mode == debug', SKIP]], |
| 62 | 62 |
| 63 ############################################################################## | 63 ############################################################################## |
| 64 # Only regexp stuff tested, no need for extensive Crankshaft tests. |
| 65 'regexp-global': [PASS, NO_VARIANTS], |
| 66 |
| 67 ############################################################################## |
| 64 # No need to waste time for this test. | 68 # No need to waste time for this test. |
| 65 'd8-performance-now': [PASS, NO_VARIANTS], | 69 'd8-performance-now': [PASS, NO_VARIANTS], |
| 66 | 70 |
| 67 ############################################################################## | 71 ############################################################################## |
| 68 # These use a built-in that's only present in debug mode. They take | 72 # These use a built-in that's only present in debug mode. They take |
| 69 # too long to run in debug mode on ARM and MIPS. | 73 # too long to run in debug mode on ARM and MIPS. |
| 70 'fuzz-natives-part*': [PASS, ['mode == release or arch == arm or arch == andro
id_arm or arch == mipsel', SKIP]], | 74 'fuzz-natives-part*': [PASS, ['mode == release or arch == arm or arch == andro
id_arm or arch == mipsel', SKIP]], |
| 71 | 75 |
| 72 'big-object-literal': [PASS, ['arch == arm or arch == android_arm', SKIP]], | 76 'big-object-literal': [PASS, ['arch == arm or arch == android_arm', SKIP]], |
| 73 | 77 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 'never-optimize': [SKIP], | 265 'never-optimize': [SKIP], |
| 262 'regress/regress-2185-2': [SKIP], | 266 'regress/regress-2185-2': [SKIP], |
| 263 'harmony/object-observe': [SKIP], | 267 'harmony/object-observe': [SKIP], |
| 264 'readonly': [SKIP], | 268 'readonly': [SKIP], |
| 265 'array-feedback': [SKIP], | 269 'array-feedback': [SKIP], |
| 266 | 270 |
| 267 # Deopt every n garbage collections collides with deopt every n times. | 271 # Deopt every n garbage collections collides with deopt every n times. |
| 268 'regress/regress-2653': [SKIP], | 272 'regress/regress-2653': [SKIP], |
| 269 }], # 'deopt_fuzzer == True' | 273 }], # 'deopt_fuzzer == True' |
| 270 ] | 274 ] |
| OLD | NEW |